-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "requests-helper",
"version": "0.1.5",
"description": "A helper for web requests",
"main": "lib/index.js",
"repository": "[email protected]:timkpaine/requests-helper.git",
"author": "Tim Paine <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"fix": "yarn lint --fix",
"lint": "eslint -c .eslintrc.js --ext .ts src/ tests/",
"prepublishOnly": "npm run build",
"test": "jest --coverage --collectCoverageFrom=src/*.{ts}"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.css"
],
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/eslint-plugin-tslint": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-jest": "^29.3.1",
"eslint": "^8.32.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^45.0.2",
"jest": "^29.3.1",
"jest-transform-css": "^6.0.1",
"mkdirp": "^2.1.2",
"rimraf": "^4.1.0",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
},
"resolutions": {
"acorn": "^6.4.1",
"kind-of": "^6.0.3",
"minimist": "^0.2.1",
"node-notifier": "^8.0.1",
"postcss": "^8.2.10",
"yargs-parser": "^13.1.2"
}
}