-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "react-redux-simple-form",
"version": "0.1.0",
"author": "Martin Saulis",
"license": "MIT",
"description": "React Redux Simple Form",
"repository": {
"type": "git",
"url": "git+https://github.com/bstst/react-redux-simple-form.git"
},
"bugs": {
"url": "https://github.com/bstst/react-redux-simple-form/issues"
},
"homepage": "https://github.com/bstst/react-redux-simple-form#readme",
"keywords": [
"react",
"react-native",
"redux",
"form",
"thunk"
],
"main": "index.js",
"scripts": {
"test": "jest src",
"clean": "git clean -fdx -e node_modules -e .idea -e src .",
"build": "npm run test && npm run clean && babel src -d .",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-env": "^2.4.1",
"babel-jest": "^22.4.4",
"babel-preset-stage-0": "^6.24.1",
"jest": "^22.4.4"
},
"dependencies": {
"react": "^16.3.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0"
}
}