-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "react-motive",
"description": "Small wrapper around the React Context API with actions/dispatch style state management.",
"version": "1.1.2",
"license": "MIT",
"main": "lib/react-motive.js",
"module": "lib/react-motive.es.js",
"author": "Cole Voss <[email protected]> (http://github.com/colevoss)",
"repository": "https://github.com/colevoss/react-motive",
"keywords": [
"react",
"context",
"state"
],
"scripts": {
"clean": "rm -rf lib",
"build": "rollup -c",
"dev": "parcel example/index.html",
"prepublishOnly": "yarn clean && yarn build",
"test": "jest"
},
"files": [
"lib"
],
"peerDependencies": {
"react": ">=16.3.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"jest": "^22.4.3",
"parcel-bundler": "^1.7.0",
"prop-types": "^15.6.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-testing-library": "^1.9.5",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3"
}
}