-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "deepmatter-tools-simpleprojecttools",
"version": "0.1.0",
"description": "a simple global package that generates tools and scaffolds for smaller projects",
"main": "bin/spt.js",
"bin": {
"spt": "bin/spt.js"
},
"scripts": {
"devrs": "npm unlink --no-save --global deepmatter-tools-simpleprojecttools && rm -r bin/* && tsc && npm link",
"clean": "rm -r bin/*",
"build": "tsc",
"unlink": "npm unlink --no-save --global deepmatter-tools-simpleprojecttools"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepxmatter/DeepMatter-Tools-SimpleProjectTools.git"
},
"keywords": [
"generator",
"project",
"quickstart",
"fast",
"simple",
"cli"
],
"author": "DeepMatter",
"license": "ISC",
"bugs": {
"url": "https://github.com/deepxmatter/DeepMatter-Tools-SimpleProjectTools/issues"
},
"homepage": "https://github.com/deepxmatter/DeepMatter-Tools-SimpleProjectTools#readme",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/inquirer": "^8.1.3",
"@types/node": "^17.0.5",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^8.3.0",
"gradient-string": "^2.0.0",
"inquirer": "^8.2.0"
}
}