-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "classy-redux",
"version": "1.0.12",
"description": "Uses OOP to simplify Redux reducer logic",
"main": "src/index.js",
"scripts": {
"build": "babel src/ClassyRedux.js --out-file src/index.js",
"test": "npm run build; mocha --compilers js:babel-register --ui bdd test/ClassyRedux.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/machineghost/Classy-Redux.git"
},
"keywords": [
"redux"
],
"author": "Jeremy Walker",
"license": "MIT",
"bugs": {
"url": "https://github.com/machineghost/Classy-Redux/issues"
},
"homepage": "https://github.com/machineghost/Classy-Redux#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-es2015-destructuring": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"sinon": "^1.17.6"
},
"dependencies": {
"lodash": "^4.17.2",
"redux": "^3.6.0"
}
}