This repository was archived by the owner on Mar 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "gsd-cli",
"version": "2.1.0",
"author": "egee-irl @egee-irl",
"bin": {
"gsd-cli": "./bin/run"
},
"bugs": "https://github.com/Egeeio/gsd-cli/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.2",
"chalk": "^3.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"chai": "^4.2.0",
"coffeelint": "^2.1.0",
"coffeescript": "^2.4.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"globby": "^10.0.1",
"mocha": "^6.2.2",
"qunit": "^2.9.3",
"testem": "^3.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/Egeeio/gsd-cli#readme",
"license": "MIT",
"description": "",
"main": "./src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "gsd-cli",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Egeeio/gsd-cli.git"
},
"scripts": {
"start": "node ./bin/run",
"restart": "npm run rebuild && npm start",
"rebuild": "./node_modules/.bin/cake rebuild",
"build": "./node_modules/.bin/cake build",
"clean": "./node_modules/.bin/cake clean",
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"version": "oclif-dev readme && git add README.md",
"test": "npm run rebuild && ./node_modules/mocha/bin/mocha --require coffeescript/register test/**/*.coffee"
}
}