-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1008 Bytes
/
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
{
"name": "basic",
"version": "1.0.0",
"description": "Basic Example.",
"scripts": {
"prepare": "npm run build",
"start": "node lib/index.js",
"watch": "npm run watch:ts",
"watch:ts": "tsbb watch & npm run build:types -- --watch",
"build": "npm run build:ts && npm run build:types",
"build:ts": "tsbb build",
"build:types": "tsbb types",
"test": "tsbb test",
"coverage": "tsbb test --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/tsbb/tree/master/example/basic"
},
"jest": {},
"keywords": [],
"license": "MIT",
"devDependencies": {
"tsbb": "1.7.6"
},
"author": "",
"dependencies": {
"@caporal/core": "^2.0.2",
"@types/readable-stream": "^2.3.9",
"@types/urijs": "^1.19.9",
"@types/xml2js": "^0.4.5",
"clipboardy": "^2.3.0",
"fs-extra-plus": "^0.5.18",
"generate-schema": "^2.6.0",
"is-url": "^1.2.4",
"quicktype-core": "^6.0.66",
"xml2js": "^0.4.23"
}
}