-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "nodetoolset",
"version": "1.1.0",
"description": "Set of utility commands for Node.js developers. Built with love from DayOne Teams!",
"bin": {
"nts": "./build/index.js"
},
"scripts": {
"dev": "ts-node src/index.ts",
"help": "ts-node src/index.ts -- help",
"prestart": "npm run build",
"start": "node build/index.js",
"lint": "gts check",
"lint:fix": "gts fix",
"lint:clean": "gts clean",
"build": "tsc -p ."
},
"dependencies": {
"@types/shelljs": "^0.8.11",
"@types/xml2js": "^0.4.11",
"colors": "^1.4.0",
"commander": "^9.4.1",
"fs-extra": "^8.0.1",
"globby": "^11.0.4",
"inquirer": "^8.0.0",
"shelljs": "^0.8.5",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/fs-extra": "^7.0.0",
"@types/inquirer": "^9.0.2",
"@types/node": "^11.13.8",
"gts": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/dayoneteams/nodetoolset.git"
},
"license": "MIT",
"author": "Dayone Teams",
"keywords": [
"utility",
"nodejs"
]
}