-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.04 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@kdcsoftware/create-nodejs",
"version": "0.4.0",
"description": "NodeJs boilerplate",
"main": "lib/index.js",
"bin": "./cli.js",
"files": [
"lib",
"templates"
],
"scripts": {
"build:commonjs": "babel src --out-dir lib",
"bundle": "parcel build src/index.js",
"clean": "rm -fR lib",
"build": "npm run clean && npm run bundle",
"lint": "eslint src --ext .js",
"test": "jest",
"watch": "jest --watchAll --runInBand",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kdcsoftware/create-nodejs.git"
},
"keywords": [
"kdc",
"nodejs",
"boilerplate"
],
"author": {
"name": "Ian Dela Cruz",
"email": "[email protected]",
"url": "https://www.kdcsoftware.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kdcsoftware/create-nodejs/issues"
},
"homepage": "https://github.com/kdcsoftware/create-nodejs#readme",
"dependencies": {
"@babel/runtime": "^7.9.6",
"chalk": "^4.0.0",
"commander": "^5.1.0",
"envinfo": "^7.5.1",
"execa": "^4.0.1",
"figlet": "^1.4.0",
"fs-extra": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@types/jest": "^25.2.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"parcel": "^2.0.0-alpha.3.2",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint src --ext .js --fix",
"pretty-quick --staged",
"git add"
]
},
"targets": {
"main": {
"engines": {
"node": ">=10.x"
}
}
}
}