-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "kickstart-it",
"version": "1.3.1",
"description": "🚀 The fastest way to setup your projects!",
"bin": {
"kickstart-it": "./dist/bundle.cjs"
},
"scripts": {
"start": "node src/main.js",
"build": "webpack --mode production",
"lint": "standard",
"lint-fix": "standard --fix",
"prepare": "husky install",
"prepublish": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danilovilhena/kickstart-it.git"
},
"keywords": [
"quick",
"start",
"project",
"starter",
"scaffolding",
"node",
"nodejs",
"browser",
"init"
],
"author": "Danilo Vilhena",
"license": "MIT",
"bugs": {
"url": "https://github.com/danilovilhena/kickstart-it/issues"
},
"homepage": "https://github.com/danilovilhena/kickstart-it#readme",
"dependencies": {
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"ora": "^8.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"standard": "^17.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist/",
"README.md"
]
}