-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "redux-devtools-prompt-state",
"version": "0.0.4",
"description": "A redux devtools utility to prompt / copy / paste state of an app",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --recursive",
"lint": "eslint src test",
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
},
"keywords": [
"redux",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/Pierrickouw/redux-devtools-prompt-state.git"
},
"author": "Pierrickouw ([email protected])",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-1": "^6.1.18",
"eslint": "^1.7.2",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.6.3",
"expect": "^1.12.2",
"invariant": "^2.2.0",
"mocha": "^2.3.3",
"mousetrap": "^1.5.3",
"redux": "^3.0.4"
}
}