-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.37 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
{
"name": "example-houston-plugin-ts",
"description": "Example HOUSTON Plugin Written In TypeScript",
"version": "0.0.8",
"author": "Block.Network",
"bugs": "https://github.com/benchlab/example-houston-plugin-ts/issues",
"dependencies": {
"guidancejs": "latest",
"lyndon-config": "latest"
},
"devDependencies": {
"@types/chai": "4",
"@types/mocha": "5",
"@types/node": "9",
"chai": "4",
"globby": "8",
"houston-plugin-help": "latest",
"lyndon-helper": "latest",
"lyndon-test": "latest",
"mocha": "5",
"nyc": "11",
"ts-node": "5",
"tslib": "1",
"typescript": "2.8"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/.lyndon.manifest.json",
"/lib"
],
"homepage": "https://github.com/benchlab/example-houston-plugin-ts",
"keywords": [
"lyndon-plugin"
],
"license": "MIT",
"lyndon": {
"guidances": "./lib/guidances",
"bin": "houston-example",
"devPlugins": [
"houston-plugin-help"
]
},
"repository": "https://github.com/benchlab/example-houston-plugin-ts",
"scripts": {
"postpack": "rm -f .lyndon.manifest.json",
"posttest": "tsc -p test --noEmit",
"prepack": "rm -rf lib && tsc && lyndon-helper manifest && lyndon-helper readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "lyndon-helper readme && git add README.md"
}
}