-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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": "@serianox/bishop",
"version": "1.6.1",
"description": "Bishop build tool",
"directories": {
"bin": "dist/bin",
"doc": "doc",
"lib": "dist/lib",
"test": "dist/test"
},
"files": [
"dist"
],
"main": "dist/lib/index.js",
"types": "dist/lib/index.ts.d",
"scripts": {
"build": "yarn run bs build",
"test": "yarn run bs test",
"prepare": "yarn run bs publish",
"bs": "bs"
},
"keywords": [],
"author": "Thomas Duboucher <[email protected]> (https://duboucher.eu/)",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/serianox/bishop.git"
},
"bugs": {
"url": "https://github.com/serianox/bishop/issues"
},
"devDependencies": {
"@serianox/bishop": "^1.6.1",
"@types/node": "^10.12.18",
"ava": "^1.1.0",
"codecov": "^3.0.0",
"dedent-js": "^1.0.1",
"nyc": "^13.1.0",
"source-map-support": "^0.5.3",
"tslint": "^5.9.1",
"typedoc": "^0.14.2",
"typescript": "^3.2.4",
"typescript-formatter": "^7.1.0"
},
"dependencies": {
"@types/parsimmon": "^1.6.1",
"commander": "^2.14.1",
"parsimmon": "^1.6.4"
}
}