-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 977 Bytes
/
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
{
"name": "relux",
"version": "0.0.7",
"description": "relax yourself from building redux applications",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build",
"test": "mocha --recursive --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/namelos/relux.git"
},
"keywords": [
"react",
"redux"
],
"author": "namelos",
"license": "MIT",
"bugs": {
"url": "https://github.com/namelos/relux/issues"
},
"homepage": "https://github.com/namelos/relux#readme",
"dependencies": {
"react": "^15.0.1",
"react-redux": "^4.4.4",
"redux": "^3.4.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
}
}