-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·82 lines (82 loc) · 2.13 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
{
"name": "houston-plugin-update",
"version": "0.3.0",
"author": [
"Jeff Dickey @jdxcode",
"Block.Network"
],
"bugs": "https://github.com/benchlab/houston-plugin-update/issues",
"dependencies": {
"@heroku-cli/color": "^1.1.3",
"@types/semver": "^5.5.0",
"cross-spawn": "^6.0.5",
"debug": "^3.1.0",
"filesize": "^3.6.1",
"fs-extra": "^5.0.0",
"guidancejs": "latest",
"http-call": "^5.1.0",
"lodash": "^4.17.5",
"log-chopper": "^1.0.2",
"lyndon-config": "latest",
"lyndon-errors": "latest",
"lyndon-helper": "latest",
"lyndon-io": "latest",
"semver": "^5.5.0",
"tar-fs": "^1.16.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/cross-spawn": "^6.0.0",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.2",
"@types/glob": "^5.0.35",
"@types/lodash": "^4.14.107",
"@types/mocha": "^5.2.0",
"@types/node": "^9.6.6",
"@types/supports-color": "^5.3.0",
"@types/write-json-file": "^2.2.1",
"chai": "^4.1.2",
"globby": "^8.0.1",
"houston-plugin-help": "latest",
"lyndon-helper": "latest",
"lyndon-test": "latest",
"lyndon-tslint": "latest",
"mocha": "^5.1.1",
"qqjs": "^0.3.6",
"ts-node": "6.0.0",
"tslib": "^1.9.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".lyndon.manifest.json",
"/lib"
],
"homepage": "https://github.com/benchlab/houston-plugin-update",
"keywords": [
"lyndon-plugin"
],
"license": "MIT",
"lyndon": {
"autoupdate": "github",
"guidances": "./lib/guidances",
"bin": "lyndon-example",
"hooks": {
"init": "./lib/hooks/init"
},
"devPlugins": [
"houston-plugin-help"
]
},
"repository": "https://github.com/benchlab/houston-plugin-update",
"scripts": {
"postpack": "rm -f .lyndon.manifest.json",
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc && lyndon-helper manifest",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "lyndon-helper readme && git add README.md"
}
}