-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "simstate",
"version": "3.0.1",
"description": "A strongly-typed React state management tool favoring React Hooks",
"license": "MIT",
"main": "dist/simstate.js",
"module": "dist/simstate.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn run lint && yarn run clean:dist && cross-env NODE_ENV=production rollup -c",
"clean:dist": "rimraf dist",
"watch": "rollup -cw",
"start": "rollup -cw",
"lint": "eslint \"{src,tests}/**/*.{ts,tsx}\" --fix",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"release": "yarn run build && standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viccrubs/simstate"
},
"author": {
"name": "Chen Junda",
"email": "smallda@outlook.com",
"url": "https://viccrubs.me"
},
"homepage": "https://github.com/viccrubs/simstate",
"dependencies": {
"tslib": "1.10.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@types/enzyme": "3.10.3",
"@types/enzyme-adapter-react-16": "1.0.5",
"@types/jest": "24.0.18",
"@types/react": "16.9.2",
"@typescript-eslint/eslint-plugin": "2.1.0",
"@typescript-eslint/parser": "2.1.0",
"coveralls": "3.0.6",
"cross-env": "5.2.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "6.3.0",
"eslint-plugin-react": "7.14.3",
"jest": "24.9.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"rimraf": "3.0.0",
"rollup": "1.20.3",
"rollup-plugin-babel-minify": "9.0.0",
"rollup-plugin-livereload": "1.0.1",
"rollup-plugin-serve": "1.0.1",
"rollup-plugin-typescript2": "0.24.0",
"standard-version": "7.0.0",
"ts-jest": "24.0.2",
"typescript": "3.6.2"
}
}