-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.44 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": "redux-lite",
"version": "0.0.1",
"description": "A lite version of Redux",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel src --out-dir lib",
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch --reporter nyan"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-plugin-check-es2015-constants": "^6.5.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.5.0",
"babel-plugin-transform-es2015-block-scoping": "^6.5.0",
"babel-plugin-transform-es2015-computed-properties": "^6.5.2",
"babel-plugin-transform-es2015-destructuring": "^6.5.0",
"babel-plugin-transform-es2015-for-of": "^6.5.2",
"babel-plugin-transform-es2015-function-name": "^6.5.0",
"babel-plugin-transform-es2015-literals": "^6.5.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.5.2",
"babel-plugin-transform-es2015-parameters": "^6.5.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
"babel-plugin-transform-es2015-spread": "^6.5.2",
"babel-plugin-transform-es2015-sticky-regex": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-register": "^6.5.2",
"expect": "^1.14.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
}
}