-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "intt",
"version": "0.2.1",
"license": "MIT",
"author": "cicec <clancysong@gmail.com>",
"type": "module",
"bin": {
"intt": "dist/index.cjs"
},
"files": [
"dist/index.cjs"
],
"scripts": {
"start": "node --loader ts-node/esm --experimental-specifier-resolution=node --no-warnings src/index.ts",
"build": "esbuild src/index.ts --platform=node --bundle --minify --outfile=dist/index.cjs && echo '#! /usr/bin/env node' | cat - dist/index.cjs > /tmp/out && mv /tmp/out dist/index.cjs",
"test": "jest",
"format": "prettier -w .",
"changelog": "gitmoji-changelog"
},
"homepage": "https://github.com/cicec/intt",
"repository": {
"type": "git",
"url": "git+https://github.com/cicec/intt.git"
},
"engines": {
"node": ">=14.14.0"
},
"dependencies": {
"axios": "^0.21.1",
"commander": "^8.0.0",
"javascript-stringify": "^2.1.0",
"kolorist": "^1.5.0",
"ora": "^5.4.1",
"prompts": "^2.4.1",
"ts-dedent": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/prompts": "^2.0.13",
"esbuild": "^0.12.15",
"gitmoji-changelog": "^2.2.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}