-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "context-api-store",
"version": "1.2.1",
"description": "State management tool",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Artur93gev/context-store.git"
},
"scripts": {
"build": "rm -rf build && rollup -c",
"deploy": "npm run build && node ./scripts/copyFiles.js && cd build && npm publish"
},
"keywords": [
"state management",
"context API"
],
"author": "artur93gev",
"license": "MIT",
"bugs": {
"url": "https://github.com/Artur93gev/context-store/issues"
},
"homepage": "https://github.com/Artur93gev/context-store#readme",
"peerDedependencies": {
"react": "^16.8.6"
},
"dependencies": {
"lodash-es": "^4.17.14"
},
"engines": {
"node": ">= 8.9.4",
"npm": ">= 5.6.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"react": "^16.8.6",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2"
}
}