-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "duckfactory",
"version": "1.3.5",
"description": "Factory for creating redux ducks",
"main": "lib/index.js",
"scripts": {
"compile": "rimraf lib/* && babel src -d lib",
"prepublish": "npm run checkall",
"test": "NODE_PATH=./ mocha --compilers js:babel-core/register --require babel-polyfill --require test/test_helper.js \"test/**/*@(.js)\"",
"eslint": "eslint ./*.js src/ test/",
"checkall": "npm run eslint && npm run compile && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/espen42/duckfactory.git"
},
"author": "Espen Norderud",
"license": "MIT",
"bugs": {
"url": "https://github.com/espen42/duckfactory/issues"
},
"homepage": "https://github.com/espen42/duckfactory#readme",
"dependencies": {
"babel-runtime": "^6.23.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "6.20.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "3.5.0",
"deep-freeze": "^0.0.1",
"eslint": "3.14.0",
"eslint-plugin-react": "^6.10.0",
"jsdom": "^9.11.0",
"mocha": "3.2.0",
"rimraf": "^2.6.1"
}
}