-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
{
"name": "consul-cli-js",
"version": "2.0.5",
"description": "A node.js wrapper for the consul CLI command",
"license": "MIT",
"author": {
"name": "Matthias Ludwig",
"email": "mludwig@quobject.io"
},
"main": "./dist/main.js",
"scripts": {
"clean": "npx del dist",
"lint": "npx tslint --project .",
"compile": "npx tsc",
"build": "npm run lint && npm run clean && npm run compile",
"test": "npm run build && npx jasmine",
"app": "npm run compile && node \"./dist/main.js\" ",
"crunch": "chokidar \"src/**/*.*\" -c \"npm run test\" --silent=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quobject/consul-cli-js.git"
},
"keywords": [
"consul"
],
"devDependencies": {
"@types/del": "4.0.0",
"@types/jasmine": "3.3.12",
"chokidar-cli": "^1.2.2",
"del": "4.0.0",
"del-cli": "1.1.0",
"jasmine": "3.3.1",
"jasmine-reporters": "^2.3.2",
"jasmine-ts-console-reporter": "^3.1.1",
"npm-run-all": "^4.1.5",
"npx": "^10.2.0",
"ts-node": "8.0.3",
"tslint": "5.14.0",
"typescript": "3.3.4000"
},
"dependencies": {
"cli-table-2-json": "1.0.12",
"lodash": "4.17.11",
"nodeify-ts": "^1.0.6"
}
}