-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.86 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
66
67
68
69
{
"name": "outstated",
"version": "3.0.1",
"description": "Simple hooks-based state management for React",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rm -rf lib",
"build": "rollup -c",
"test": "jest --coverage --ci",
"lint": "eslint src/ tests/ example/",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run clean && npm run build",
"example": "parcel example/index.html"
},
"files": [
"lib",
"index.d.ts"
],
"keywords": [
"react",
"state",
"store",
"hooks"
],
"author": "Tim Ermilov <[email protected]> (http://codezen.net)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.8",
"@testing-library/react-hooks": "^1.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.3",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-config-standard-react": "^8.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"parcel": "^1.12.4",
"prettier": "^1.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-terser": "^5.2.0"
},
"peerDependencies": {
"react": "^16.8.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}