-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
{
"name": "helm-utils",
"version": "0.1.3",
"description": "Some missing utils when working with helm (as node.js library + CLI).",
"keywords": [
"cli",
"helm"
],
"homepage": "https://github.com/stefanwalther/helm-utils#readme",
"bugs": {
"url": "https://github.com/stefanwalther/helm-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanwalther/helm-utils.git"
},
"license": "MIT",
"author": "Stefan Walther <[email protected]> (http://qliksite.io)",
"main": "./src/index.js",
"bin": {
"helm-utils": "./bin/cli.js"
},
"directories": {
"bin": "./bin",
"src": "./src"
},
"scripts": {
"lint": "npm run lint:src && npm run lint:test",
"lint:fix": "npm run lint:src:fix && npm run lint:test:fix",
"lint:src": "eslint src",
"lint:src:fix": "eslint src --fix",
"lint:test": "eslint test",
"lint:test:fix": "eslint test --fix",
"test": "nyc mocha './test/**/*.spec.js' --require './test/mocha.conf.js'",
"test:unit": "nyc mocha './test/unit/**/*.spec.js' --require './test/mocha.conf.js'",
"test:integration": "nyc mocha './test/integration/**/*.spec.js' --require './test/mocha.conf.js'",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"coverage:html": "nyc report --reporter=html",
"codecov": "./node_modules/.bin/codecov",
"precommit": "eslint src --fix --quiet && eslint test --fix --quiet"
},
"dependencies": {
"axios": "^0.18.0",
"chalk": "^2.4.1",
"cli-table": "^0.3.1",
"download": "^7.1.0",
"fs-extra": "^7.0.1",
"is-online": "^7.0.0",
"is-url": "^1.2.4",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"package-info": "^3.0.2",
"read-pkg-up": "^4.0.0",
"semver": "^5.6.0",
"tar": "^4.4.6",
"url-join": "^4.0.0",
"uuid": "^3.3.2",
"yargs": "^12.0.2"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"codecov": "3.1.0",
"documentation": "9.0.0-alpha.1",
"husky": "1.1.4",
"nock": "10.0.2",
"eslint": "5.8.0",
"eslint-config-space-single": "0.3.5",
"mocha": "5.2.0",
"nyc": "13.1.0"
}
}