-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
55
56
57
58
59
{
"name": "radux",
"version": "0.6.4",
"description": "Helper library for Redux that helps reduce the repitiveness of Redux configuration for React",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "babel -d lib/ src/",
"precommit": "lint-staged && npm run-script transpile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brian-dlee/radux.git"
},
"keywords": [
"redux",
"react",
"boilerplate",
"helper"
],
"author": "Brian Lee <briandl92391@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brian-dlee/radux/issues"
},
"homepage": "https://github.com/brian-dlee/radux#readme",
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"react-redux": "^5.0.5",
"redux": "^3.7.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-jest": "^21.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"husky": "^0.14.3",
"jest": "^21.0.1",
"lint-staged": "^4.0.2",
"prettier": "^1.5.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
}
}
}