-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "redux-clean-state",
"version": "1.0.1",
"description": "A higher order component to clean your app state on componentWillUnmount",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register --require ./tests/test_helper.js tests/**/*.js",
"build": "babel src --plugins transform-react-jsx --presets babel-preset-es2015 --out-dir dist",
"prepublish": "npm run build"
},
"keywords": [
"redux",
"react",
"state",
"clean"
],
"author": "Renan Valentin <renan.lifestyle@hotmail.com>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"skin-deep": "^0.16.0"
}
}