-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "startmeup",
"version": "0.1.7",
"description": "Jumpstart coding by downloading any git repo (sub)folder",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"repository": "git@github.com:aGuyNamedJonas/startmeup.git",
"author": "aGuyNamedJonas <hi@aGuyNamedJonas.com>",
"bin": {
"startmeup": "bin/index.js"
},
"jest": {
"testPathIgnorePatterns": [
"/bin"
]
},
"scripts": {
"start": "ts-node ./src/index.ts",
"prepare": "npm run build",
"watch": "nodemon",
"build": "tsc",
"test": "jest",
"west": "jest --watch",
"check-starters": "npx ts-node starters/tools/checkStarters.ts",
"ensure-only-starters-changed": "npx ts-node starters/tools/ensureOnlyStartersChanged.ts",
"add-starters-to-readme": "npx ts-node starters/tools/addStartersToReadme.ts"
},
"dependencies": {
"@types/glob": "^7.1.3",
"chalk": "^4.1.1",
"execa": "^5.0.0",
"extract-zip": "^2.0.1",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"ncp": "^2.0.0",
"node-fetch": "^2.6.1",
"ora": "^5.4.0",
"typescript": "^4.3.2",
"url-join": "^4.0.1"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/ncp": "^2.0.4",
"@types/node": "^15.6.1",
"@types/node-fetch": "^2.5.10",
"@types/tmp": "^0.2.0",
"@types/url-join": "^4.0.0",
"babel-jest": "^27.0.1",
"jest": "^27.0.1",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0"
}
}