-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.11 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
50
51
52
53
54
55
56
57
58
59
{
"name": "redux-action-factory",
"version": "0.3.1",
"description": "Simple library for creating schema-validated Redux Actions (or thunks, promises, etc.). Powered by the awesomely awesome Schema-Inspector.",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "find ./test -name '*.test.js' | cross-env BABEL_ENV=commonjs mocha -r test/index.js --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "cross-env BABEL_ENV=commonjs istanbul cover _mocha `find ./test -name '*.test.js'` -- -r test/index.js --compilers js:babel-register",
"lint": "eslint src test",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir lib && cp src/configSchema.json lib/",
"prepublish": "npm run clean && npm run lint && npm test && npm run build",
"coveralls": "cross-env BABEL_ENV=commonjs istanbul cover _mocha `find ./test -name '*.test.js'` --report lcovonly -- -r test/index.js --compilers js:babel-register && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kwirke/redux-action-factory.git"
},
"keywords": [
"redux",
"actions",
"factory",
"action factory",
"redux-action-factory"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-plugin-import-glob": "^1.0.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"istanbul": "^1.0.0-alpha",
"mocha": "^3.0.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"schema-inspector": "^1.6.6"
}
}