forked from CurtisHumphrey/redux_helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.89 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
{
"name": "redux_helpers",
"version": "1.2.0",
"description": "Helpers for redux that follow a simpified pattern",
"main": "dist/redux_helpers.min.js",
"repository": {
"type": "git",
"url": "https://github.com/CurtisHumphrey/redux_helpers"
},
"scripts": {
"build": "npm run lint && npm run test && npm run clean && npm run build:dev && npm run build:prd",
"build:dev": "webpack src/redux_helpers.js dist/redux_helpers.js --config tools/webpack.config.dev.js",
"build:prd": "webpack src/redux_helpers.js dist/redux_helpers.min.js --config tools/webpack.config.prd.js",
"prepublish": "npm run build",
"clean": "rimraf dist",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test": "karma start karma.config.js",
"test:dev": "npm run test -- --watch & npm run view-coverage",
"test:web": "npm run test -- --browsers Chrome",
"test:dev:web": "npm run test:web -- --watch & npm run view-coverage",
"view-coverage": "browser-sync start -s 'coverage/html' -f 'coverage/html' --port 3001 --no-ui --logLevel silent"
},
"keywords": [
"es6",
"babel",
"webpack",
"mocha",
"chai",
"karma",
"rewire",
"travis",
"coveralls",
"david-dm",
"saucelabs",
"istanbul",
"boilerplate"
],
"author": "Curtis M. Humphrey, PhD",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.5",
"babel-istanbul": "^0.8.0",
"babel-istanbul-loader": "0.1.0",
"babel-loader": "^6.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-rewire": "^1.0.0-beta-5",
"babel-plugin-syntax-jsx": "^6.5.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"browser-sync": "^2.13.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"escope": "^3.4.0",
"eslint": "^2.1.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"karma": "^0.13.21",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"loader-utils": "^0.2.12",
"mocha": "^2.4.5",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.4",
"rimraf": "^2.5.2",
"seamless-immutable": "^6.1.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.13"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.5.2",
"function-params": "^0.1.0",
"lodash": "^4.13.1",
"redux-actions": "^0.10.0"
}
}