-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.15 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "simple-store",
"version": "4.0.0",
"description": "A library for creating simple flux stores to be used in front-end web applications",
"main": "dist/simple-store.cjs.js",
"module": "dist/simple-store.esm.js",
"unpkg": "dist/umd/simple-store.js",
"scripts": {
"prepublishOnly": "npm run build",
"start": "run-p build:watch test:watch",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "jest tests/simple-store.test.js --coverage",
"test:watch": "jest tests/simple-store.test.js --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BigAB/simple-store.git"
},
"keywords": [],
"author": "BigAB <[email protected]> (http://bigab.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/BigAB/simple-store/issues"
},
"homepage": "https://github.com/BigAB/simple-store#readme",
"peerDependencies": {
"rxjs": "^6.5.2",
"react": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^3.0.0",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hooks-testing-library": "^0.6.0",
"react-test-renderer": "^16.8.6",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rxjs": "^6.5.2"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"trailingComma": "es5",
"jsxSingleQuote": true,
"singleQuote": true
},
"jest": {
"collectCoverageFrom": [
"src/*.js",
"!src/index.js"
]
},
"browserslist": [
"last 2 versions and >5%"
]
}