forked from CrossChx/cx-redux-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "cx-redux-utils",
"author": "Kyle Chamberlain",
"version": "1.0.0",
"license": "MIT",
"description": "Tools for reducing boilerplate while using an opinionated redux pattern",
"main": "lib/index.js",
"bugs": {
"url": "https://github.com/crosschx/cx-redux-utils/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/crosschx/cx-redux-utils/"
},
"scripts": {
"build-docs": "./node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"clean-docs": "rm -rf ./docs",
"compile": "./node_modules/.bin/babel -d lib/ src/",
"docs": "npm run clean-docs && npm run build-docs",
"test": "./node_modules/mocha/bin/_mocha --compilers js:babel-core/register ./test/unit-tests",
"test:watch": "npm run test -- --watch --growl",
"test:min": "npm run test:watch -- --reporter min",
"mocha:nyan": "npm run test:watch -- --reporter nyan"
},
"dependencies": {
"chai": "^3.5.0",
"how-the-test-was-won": "^1.0.28",
"ramda": "^0.22.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^4.2.3",
"how-the-test-was-won": "^1.0.28",
"jsdoc": "^3.4.0",
"jsdoc-babel": "^0.1.0",
"minami": "^1.1.1",
"mocha": "^2.4.5"
}
}