-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 4.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "include-media-redux",
"version": "1.0.6",
"description": "An adaption of include-media-export for redux",
"main": "dist/include-media-redux.js",
"scripts": {
"bundle": "rollup -c --environment client",
"dist": "yarn bundle && yarn lint",
"lint": "eslint --format ./node_modules/eslint-friendly-formatter --cache src test",
"lint:staged": "eslint --format ./node_modules/eslint-friendly-formatter --cache",
"precommit": "lint-staged",
"prepush": "yarn security-scan",
"pretest": "yarn bundle",
"prettier": "prettier --trailing-comma es5 --single-quote --print-width 120 --write",
"preversion": "yarn dist",
"release": "np",
"security-scan": "nsp check --output summary --warn-only",
"start": "yarn test",
"test": "npm-run-all --parallel test:*:once",
"test:ci": "npm-run-all test:browser:once test:node:ci",
"tdd": "npm-run-all --parallel test:*:tdd",
"test:browser:once": "NODE_ENV=test karma start test/karma.conf.js --no-auto-watch --single-run",
"test:browser:tdd": "NODE_ENV=test karma start test/karma.conf.js --auto-watch --no-single-run",
"test:node:once": "NODE_ENV=test nyc mocha test/runner test/specs/common/*.spec.js test/specs/common/**/*.spec.js",
"test:node:tdd": "yarn test:node:once -- --cache --watch",
"test:node:ci": "yarn test:node:once && nyc report --reporter=text-lcov | coveralls",
"version": "auto-changelog --template compact --package; git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wework/include-media-redux.git"
},
"files": [
"dist/",
"CHANGELOG.md"
],
"keywords": [
"react",
"redux",
"include-media",
"media queries",
"react-redux"
],
"author": "WeWork Digital <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wework/include-media-redux/issues"
},
"engines": {
"node": ">=6.0"
},
"homepage": "https://github.com/wework/include-media-redux#readme",
"peerDependencies": {
"react": "15.3.x",
"react-redux": "5.x.x",
"redux": "3.x.x"
},
"dependencies": {
"flux-standard-action": "1.x.x",
"hoist-non-react-statics": "1.x.x",
"lodash": "4.x.x",
"react-redux": "5.x.x"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier",
"lint",
"git add"
]
},
"devDependencies": {
"auto-changelog": "0.3.1",
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-istanbul": "4.1.4",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-transform-es2015-modules-umd": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.24.1",
"chai": "4.0.2",
"chai-enzyme": "0.7.1",
"coveralls": "2.13.1",
"enzyme": "2.8.2",
"eslint": "3.19.0",
"eslint-config-prettier": "2.1.1",
"eslint-config-wework": "2.0.0",
"eslint-friendly-formatter": "3.0.0",
"eslint-plugin-mocha": "4.9.0",
"husky": "0.13.4",
"imports-loader": "0.7.1",
"json-loader": "0.5.4",
"karma": "1.7.0",
"karma-coverage": "1.1.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.3",
"karma-phantomjs-launcher": "1.0.4",
"karma-sinon-chai": "1.3.1",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"lint-staged": "3.6.1",
"mocha": "3.4.2",
"np": "2.16.0",
"nsp": "2.6.3",
"nyc": "11.0.2",
"path": "0.12.7",
"prettier": "1.4.4",
"react": "15.3.0",
"react-addons-test-utils": "15.3.0",
"react-dom": "15.3.0",
"reduce-reducers": "0.1.2",
"redux": "3.6.0",
"rollup": "0.42.0",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-cleanup": "1.0.0",
"rollup-plugin-filesize": "1.3.2",
"rollup-watch": "4.0.0",
"semver": "5.3.0",
"sinon": "2.3.2",
"sinon-chai": "2.10.0",
"webpack": "2.6.1",
"yarn-run-all": "3.1.1"
}
}