-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
111 lines (111 loc) · 3.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "redux-bug-reporter",
"version": "1.2.0",
"description": "A bug reporter and bug playback tool for redux.",
"main": "lib/index.js",
"scripts": {
"build:lib": "babel ./src --out-dir ./lib",
"build:umd": "cross-env NODE_ENV=development webpack --config webpack.config.js",
"build:umd:min": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build:example": "cross-env NODE_ENV=production webpack --inline --progress --colors --config example/webpack.example.config.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min && npm run build:example",
"clean": "rimraf lib dist coverage example/bundle.js",
"lint": "standard",
"prepublish": "npm run clean && npm run build",
"publish-gh-pages": "npm run prepublish && ./scripts/publish-gh-pages.js",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --progress --colors --config example/webpack.example.config.js",
"start-static": "npm run build:example && cd example && live-server",
"test": "standard && mocha --compilers js:babel-register --recursive --require test/setup.js",
"test:watch": "npm test -- --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover _mocha -- --recursive --require test/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtschust/redux-bug-reporter.git"
},
"author": "Drew Schuster <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"redux",
"bug",
"debug",
"Drew-Bug",
"react-component",
"time travel",
"devtools"
],
"bugs": {
"url": "https://github.com/dtschust/redux-bug-reporter/issues"
},
"homepage": "https://github.com/dtschust/redux-bug-reporter#readme",
"dependencies": {
"es6-promise": "^3.2.1",
"isomorphic-fetch": "^2.2.1",
"lodash.clonedeep": "^4.3.1",
"lodash.isequal": "^4.1.1",
"lodash.isfunction": "^3.0.7",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"ua-parser-js": "^0.7.10"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"config": {
"ghooks": {
"pre-push": "npm test"
}
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist/",
"example/todomvc/"
]
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"cross-env": "^2.0.1",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"gh-pages": "^0.11.0",
"ghooks": "^1.0.3",
"immutable": "^3.8.1",
"isparta": "^4.0.0",
"jsdom": "~5.4.3",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"live-server": "^1.0.0",
"lodash": "^4.12.0",
"mocha": "^2.4.5",
"nock": "^8.0.0",
"postcss-loader": "^0.9.1",
"proxyquire": "^1.7.9",
"react": ">=0.14.0",
"react-addons-test-utils": ">=0.14.0",
"react-dom": ">=0.14.0",
"react-transform-hmr": "^1.0.4",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.2",
"standard": "^8.0.0",
"style-loader": "^0.13.1",
"todomvc-app-css": "^2.0.6",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
}
}