This repository has been archived by the owner on May 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
60
61
62
63
64
65
66
{
"name": "redux-import-export-monitor",
"version": "1.0.0",
"description": "Redux DevTools monitor for copying state/action log to clipboard as well as pasting it back in.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint src test examples",
"test": "NODE_ENV=test mocha --compilers js:babel/register --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel/register --recursive --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build",
"cz": "git add . && git cz",
"czp": "npm run cz && git push",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"release": {
"anaylzeCommits": {
"minor": ["feat"],
"patch": ["fix", "perf"]
}
},
"repository": {
"type": "git",
"url": "https://github.com/lapanoid/redux-import-export-monitor.git"
},
"authors": [
"Cale Newman",
"Sergey Lapin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/redux-import-export-monitor/issues"
},
"homepage": "https://github.com/gaearon/redux-import-export-monitor",
"devDependencies": {
"babel": "^5.8.34",
"babel-core": "^5.8.34",
"babel-eslint": "^4.1.6",
"babel-loader": "^5.4.0",
"cz-customizable": "^2.6.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "3.9.0",
"mocha": "^2.3.4",
"rimraf": "^2.3.4",
"semantic-release": "^4.3.5"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0",
"redux-devtools": "^3.0.0"
},
"dependencies": {
"parse-key": "^0.2.1",
"react-addons-shallow-compare": "^0.14.0 || ^15.0.0",
"react-modal": "^1.1.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}