-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 967 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
{
"name": "tfjs-license-fix",
"version": "1.0.0",
"repository": "https://github.com/chunnienc/tfjs-license-fix.git",
"author": "Chunnien Chan <[email protected]>",
"main": "./dist/index.js",
"bin": {
"tfjs-license-fix": "./dist/index.js"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/glob": "^8.0.1",
"@types/node": "^14.11.2",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"eslint": "^8.33.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"gts": "^3.1.1",
"typescript": "~4.7.0"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"build": "tsc",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"dependencies": {
"chalk": "^4",
"glob": "^8.1.0",
"simple-git": "^3.16.0",
"yargs": "^17.6.2"
}
}