-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 KB
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
{
"name": "react-state-sequencer",
"version": "0.0.2",
"description": "Utility library to help you update react state in a sequence.",
"homepage": "https://github.com/Tomekmularczyk/react-state-sequencer#readme",
"main": "index.js",
"repository": "git+https://github.com/Tomekmularczyk/react-state-sequencer.git",
"keywords": [
"react",
"state",
"sequence",
"update",
"setstate"
],
"author": "Tomasz Mularczyk",
"license": "ISC",
"scripts": {
"prepublishOnly": "npm run build",
"build": "NODE_ENV=production rollup -c",
"prettify": "prettier --write './**/*.js'",
"test": "jest src/**/*.test.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jest": "^23.1.0",
"prettier": "^1.13.5",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-test-renderer": "^16.4.0",
"rollup": "^0.60.1",
"rollup-plugin-babel": "^3.0.4"
},
"peerDependencies": {
"react": ">= 15.x.x"
}
}