-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "kl-ci-tools",
"version": "0.1.0",
"description": "Kochava labs ci scripting tools",
"main": "dist/main.js",
"files": [
"dist"
],
"bin": {
"kl-ci-tools": "dist/bin.js"
},
"scripts": {
"build": "npm run lint && babel src -d dist",
"test": "npm run lint && env DEBUG='kl-ci-tools*' ./node_modules/.bin/mocha --require babel-register \"test/**/*.js\"",
"cli": "npm run build && env DEBUG='kl-ci-tools*' ./dist/bin.js",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kochavalabs/kl-ci-tools.git"
},
"keywords": [
"ci",
"kochava"
],
"author": "KochavaLabs",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.0.2",
"nock": "^10.0.6",
"sinon": "^7.3.2"
},
"dependencies": {
"commander": "^5.1.0",
"debug": "^4.1.1",
"semver": "^7.3.2"
}
}