-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "@hongshancapital/power-guard",
"version": "4.1.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"author": "Gao Sun",
"license": "MIT",
"type": "module",
"repository": "[email protected]:hongshancapital/power-guard.git",
"scripts": {
"build": "rm -rf lib/ && tsc",
"lint": "eslint --ext .tsx --ext .ts src/ tests/",
"test": "nyc --reporter=html mocha -r ts-node/register tests/**/*.test.ts"
},
"exports": {
".": "./lib/index.js"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"chai": "^4.5.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"resolutions": {
"braces": "3.0.3",
"semver": "5.7.2"
},
"dependencies": {},
"volta": {
"node": "20.12.0"
}
}