-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.58 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
{
"name": "redux-async-transitions",
"version": "1.0.6",
"description": "redux + async + transition",
"main": "./src/index.js",
"scripts": {
"test-raw": "npm run clean && ./node_modules/.bin/mocha --compilers js:babel-core/register --recursive",
"test-coverage": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --compilers js:babel-core/register --timeout 500000 -R mocha-junit-reporter",
"clean": "./node_modules/.bin/rimraf coverage .nyc_output test-results.xml",
"test": "npm run clean && ./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/mocha --compilers js:babel-core/register --timeout 500000",
"upload-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"tag": "git tag 1.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/sureshvarman/redux-async-transitions.git"
},
"keywords": [
"react",
"redux",
"async",
"transition"
],
"author": "suresh varman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sureshvarman/redux-async-transitions/issues"
},
"homepage": "https://github.com/sureshvarman/redux-async-transitions",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.0",
"coveralls": "^3.0.0",
"expect": "^21.2.1",
"history": "^4.7.2",
"jsdom": "^11.3.0",
"mocha": "^4.0.0",
"mocha-junit-reporter": "^1.15.0",
"nyc": "^11.2.1",
"redux": "^3.7.2",
"redux-create-reducer": "^1.1.1",
"rimraf": "^2.6.2"
}
}