-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 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
{
"name": "@spec.dev/cli",
"description": "Spec CLI",
"version": "0.2.13",
"keywords": [
"javascript",
"typescript",
"spec",
"cli"
],
"homepage": "https://github.com/spec-dev/cli",
"bugs": "https://github.com/spec-dev/cli/issues",
"license": "MIT",
"author": "Spec",
"files": [
"dist",
"src"
],
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"bin": {
"spec": "dist/index.js"
},
"sideEffects": false,
"repository": "spec-dev/cli",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node ./src/index.ts",
"scrap": "ts-node ./src/scrap.ts",
"clean": "rimraf dist",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "genversion src/version.ts --es6 && run-s clean format build:main",
"build:main": "tsc -p tsconfig.json"
},
"dependencies": {
"@ltd/j-toml": "1.30.0",
"@spec.dev/pm": "^0.0.2",
"@streamparser/json": "^0.0.8",
"ansi-diff-stream": "^1.2.1",
"chalk": "4.1.0",
"commander": "^9.4.0",
"humps": "^2.0.1",
"netrc": "^0.1.4",
"node-fetch": "^2.6.6",
"open": "^8.4.2",
"ora": "5.4.1",
"parse-database-url": "^0.3.0",
"pg-format": "^1.0.4",
"progress-string": "^1.2.2",
"qoa": "^0.2.0",
"short-uuid": "^4.2.0",
"uuid4": "^2.0.3"
},
"devDependencies": {
"@types/node": "^18.0.3",
"genversion": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.11",
"ts-node": "^10.8.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}