-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
32 lines (32 loc) · 1.21 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
{
"name": "redux-immutable-state-invariant",
"version": "2.1.0",
"description": "Redux middleware that detects mutations between and outside redux dispatches. For development use only.",
"main": "dist/index.js",
"repository": "leoasis/redux-immutable-state-invariant",
"scripts": {
"clean": "rm -rf dist",
"build": "babel --out-dir dist src",
"test": "mocha --compilers js:babel-core/register",
"test:coverage": "rm -rf coverage/ && istanbul cover --report lcov _mocha -- --compilers js:babel-core/register test/*.spec.js --recursive",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"prepublish": "npm run clean && npm run build",
"example": "cd example && rm -rf node_modules/redux-immutable-state-invariant && yarn install && yarn start"
},
"author": "Leonardo Andres Garcia Crespo <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-3": "6.22.0",
"coveralls": "2.12.0",
"expect": "1.20.2",
"istanbul": "0.4.5",
"mocha": "3.2.0"
},
"dependencies": {
"invariant": "^2.1.0",
"json-stringify-safe": "^5.0.1"
}
}