This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.57 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@ice/hooks-store",
"version": "0.1.1",
"description": "Lightweight React state management library based on React Hooks.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ice-lab/hooks-store.git"
},
"keywords": [
"hooks",
"state"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ice-lab/hooks-store/issues"
},
"homepage": "https://github.com/ice-lab/hooks-store",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"build": "rm -rf lib && tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run lint:nofix && npm run test && npm run build",
"lint": "npm run lint:nofix -- --fix",
"lint:nofix": "eslint --cache --ext .ts,.tsx ./",
"test": "NODE_ENV=unittest jest",
"coverage": "codecov"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@ice/spec": "^0.1.9",
"@testing-library/react": "^9.0.0",
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"@types/react": "^16.9.25",
"codecov": "^3.3.0",
"eslint": "^6.7.2",
"husky": "^3.0.9",
"jest": "^24.7.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.7.4"
},
"peerDependencies": {
"react": "^16.8.0"
},
"publishConfig": {
"access": "public"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"preset": "ts-jest"
}
}