-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "redux-test-recorder",
"version": "1.4.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "./node_modules/.bin/webpack --config webpack.demo.config.js --watch --progress",
"build": "babel src --out-dir dist",
"watch": "babel src --watch --out-dir dist",
"test": "NODE_ENV='test' ./node_modules/.bin/webpack --config webpack.test.config.js --progress && babel tests/index.js --out-file tests/build.js && node tests/build.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conorhastings/redux-test-recorder.git"
},
"author": "Conor Hastings",
"license": "MIT",
"bugs": {
"url": "https://github.com/conorhastings/redux-test-recorder/issues"
},
"keywords": [
"react",
"redux",
"tests",
"tape",
"reducer",
"reactjs",
"component",
"react-component",
"record",
"react-redux"
],
"homepage": "https://github.com/conorhastings/redux-test-recorder#readme",
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.5.0",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-redux": "^4.0.6",
"redux": "^3.0.5",
"redux-test-recorder-react": "^1.0.0",
"tape": "^4.4.0",
"tape-run": "^2.1.1",
"webpack": "^1.12.10"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6"
}
}