-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.24 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
{
"name": "@homezen/hz-test-helpers",
"version": "3.3.7",
"description": "Universal JavaScript Redux utilities for hz-webapp and beyond",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm run clean && npm run build-js",
"build-js": "BLUEBIRD_DEBUG=1 NODE_ENV=production babel src -s -d lib",
"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": "NODE_ENV=production BLUEBIRD_DEBUG=1 hz-release-public-module",
"start": "npm run dev",
"tdd": "npm run watch",
"test": "npm run test-mocha && npm run test-karma",
"test-karma": "karma start",
"test-mocha": "cross-env NODE_ENV=test nyc --require babel-register --require babel-polyfill --reporter=lcov --reporter=text mocha ./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/**/*.js",
"test-watch": "mocha -w --compilers js:babel-core/register -R dot ./src/**/*.js ./src/*.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": "homezen",
"license": "BSD-3-Clause",
"engines": {
"node": "^6 || ^8 || ^10",
"npm": "^3.10 || ^4 || ^5 || ^6",
"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.4",
"babel-plugin-lodash": "~3.3.2",
"babel-preset-es2015": "~6.24.1",
"babel-preset-es2015-node": "~6.1.0",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-3": "~6.24.1",
"babel-register": "~6.26.0",
"codecov": "~3.0.0",
"cross-env": "~5.1.0",
"eslint": "^5.1.0",
"eslint-config-homezen": "~4.0.0",
"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.17.0",
"nyc": "~11.9.0",
"remark-cli": "~5.0.0",
"remark-lint": "~6.0.0",
"source-map-support": "~0.5.0",
"watch": "~1.0.0",
"webpack": "~3.8.0"
},
"dependencies": {
"chai": "4.1.2",
"debug": "^3.0.0",
"jsverify": "0.8.3",
"sinon": "~4.1.0",
"sinon-chai": "~2.14.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/homezen/hz-redux-utils.git"
},
"bugs": {
"url": "https://github.com/homezen/hz-redux-utils/issues"
},
"homepage": "https://github.com/homezen/hz-redux-utils#readme",
"nyc": {
"sourceMap": false,
"instrument": false
}
}