-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "redux-reducer-functions",
"version": "0.0.1",
"description": "Use function names as action types",
"homepage": "https://github.com/vitsy/redux-reducer-functions",
"author": "Victor Tsyba <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vitsy/redux-reducer-functions.git"
},
"keywords": [
"react",
"redux",
"action",
"reducer",
"constants"
],
"main": "./lib",
"files": [
"lib",
"src"
],
"scripts": {
"dev": "babel ./index.js --watch --out-dir ./lib --source-maps",
"build": "npm run clean && babel ./index.js --out-dir ./lib",
"prepublish": "npm run build",
"test": "jest --runInBand --verbose",
"clean": "rimraf ./lib"
},
"dependencies": {
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.2.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^22.2.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-test-renderer": "^16.2.0",
"redux": "^3.2.1",
"rimraf": "^2.6.2"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
}
}