-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.54 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
59
60
61
62
63
{
"name": "makes",
"version": "3.2.0",
"description": "A tool to scaffold new projects, simple enough that you would want to define your own skeletons (aka generators).",
"main": "dist/index.js",
"files": [
"dist",
"bin"
],
"engines": {
"node": ">=12.10.0"
},
"bin": {
"makes": "bin/makes.js"
},
"scripts": {
"test": "pta",
"coverage": "c8 pta",
"lint": "eslint",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"pretest": "npm run lint",
"build": "ncc build lib/index.js -m",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/makesjs/makes.git"
},
"keywords": [
"scaffold",
"app",
"boilerplate"
],
"author": "Chunpeng Huo",
"license": "MIT",
"bugs": {
"url": "https://github.com/makesjs/makes/issues"
},
"homepage": "https://github.com/makesjs/makes#readme",
"devDependencies": {
"@babel/code-frame": "^7.18.6",
"@vercel/ncc": "^0.36.1",
"ansi-colors": "^4.1.3",
"c8": "^7.13.0",
"cross-spawn": "^7.0.3",
"eslint": "^8.35.0",
"hosted-git-info": "^6.1.1",
"https-proxy-agent": "^5.0.1",
"isutf8": "^4.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.mergewith": "^4.6.2",
"mock-fs": "^5.2.0",
"mri": "^1.2.0",
"pta": "^1.2.0",
"sisteransi": "^1.0.5",
"standard-changelog": "^2.0.27",
"tar": "^6.1.13",
"vinyl": "^3.0.0",
"zora": "^5.2.0"
}
}