-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.7 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
{
"name": "redux-variants",
"version": "1.0.176",
"description": "Universal JavaScript variants system for Redux",
"main": "lib/index.js",
"scripts": {
"build": "npm run clean && npm run build-js",
"build-js": "BLUEBIRD_DEBUG=1 NODE_ENV=production babel src -s -d lib",
"check-deps": "npm outdated && npm-check || echo \"deps out of date!\"",
"clean": "rm -vrf ./lib",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"deploy": "npm run build && npm run release",
"dev": "npm run watch",
"lint": "npm run lint-eslint && npm run lint-remark && npm run lint-yaml",
"lint-eslint": "eslint --ignore-path .gitignore .",
"lint-yaml": "bundle exec yaml-lint *.yml *.yaml",
"lint-remark": "remark -f src/**/*.md *.md",
"lint-watch": "watch 'eslint --ignore-path .gitignore .' src",
"release": "hz-release-public-module",
"start": "npm run dev",
"test": "npm run test-mocha && npm run test-karma",
"test-karma": "karma start",
"test-mocha": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --compilers js:babel-core/register ./src/**/*.js",
"test-mocha-junit": "mocha --compilers js:babel-core/register -R mocha-junit-reporter --reporter-options mochaFile=$CIRCLE_TEST_REPORTS/mocha/docs-api.xml ./src/**/*.test.js",
"test-watch": "mocha -w --compilers js:babel-core/register -R dot ./src/**/*.test.js ./src/*.test.js",
"watch": "npm run watch-js & NODE_ENV=production npm run test-watch & npm run lint-watch",
"watch-js": "npm run clean && babel src -w -s -d lib"
},
"author": "SpainTrain",
"license": "MIT",
"engines": {
"node": "^4 || ^6 || ^8",
"npm": "^2 || ^3 || ^4 || ^5",
"yarn": "^1"
},
"devDependencies": {
"@homezen/hz-npm-scripts": "~1.2.0",
"babel-cli": "~6.26.0",
"babel-core": "~6.26.0",
"babel-eslint": "~8.0.0",
"babel-loader": "~7.1.0",
"babel-plugin-istanbul": "~4.1.1",
"babel-plugin-lodash": "~3.3.2",
"babel-preset-es2015": "~6.24.0",
"babel-preset-es2015-node": "~6.1.1",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-3": "~6.24.1",
"babel-register": "~6.26.0",
"chai": "~4.1.0",
"chai-enzyme": "~1.0.0-beta.0",
"codecov": "~3.0.0",
"cross-env": "~5.1.0",
"enzyme": "~3.2.0",
"enzyme-adapter-react-16": "~1.1.0",
"eslint": "^5.1.0",
"eslint-config-homezen": "~4.0.0",
"json-loader": "~0.5.4",
"karma": "~1.7.0",
"karma-chai": "~0.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "~1.0.0",
"karma-mocha": "~1.3.0",
"karma-mocha-reporter": "~2.2.1",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~2.0.1",
"mocha": "~4.0.0",
"mocha-junit-reporter": "~1.15.0",
"nock": "~9.1.0",
"npm-check": "~5.7.0",
"nyc": "~11.4.0",
"react": "~16.1.0",
"react-dom": "~16.1.0",
"react-test-renderer": "~16.1.0",
"redux": "~3.7.0",
"remark-cli": "~5.0.0",
"remark-lint": "~6.0.0",
"sinon": "~4.1.0",
"sinon-chai": "~2.14.0",
"source-map-support": "~0.5.0",
"watch": "~1.0.1",
"webpack": "~3.8.0"
},
"peerDependencies": {
"react": "^15.6 || ~16.0.0",
"react-dom": "^15.6 || ~16.0.0",
"redux": "~3.7.0"
},
"dependencies": {
"bluebird": "^3.4.6",
"debug": "^3.0.0",
"es6-error": "^4.0.0",
"lodash": "^4.17.2",
"react-redux": "^5.0.0",
"reselect": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/homezen/redux-variants.git"
},
"bugs": {
"url": "https://github.com/homezen/redux-variants/issues"
},
"homepage": "https://github.com/homezen/redux-variants#readme",
"nyc": {
"sourceMap": false,
"instrument": false
}
}