-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 994 Bytes
/
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
{
"name": "js-license-generator",
"version": "1.2.0",
"description": "A license generator for Javascript projects",
"main": "index.js",
"scripts": {
"lint": "eslint index.js \"lib/**/*.js\"",
"format": "prettier --print-width 120 --single-quote --trailing-comma none --write index.js \"lib/**/*.js\""
},
"author": "128 Technology",
"license": "MIT",
"private": true,
"files": [
"index.js"
],
"bin": {
"js-license-generator": "index.js"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"axios": "^0.18.0",
"chalk": "^2.3.2",
"license-checker": "^25.0.1",
"lodash": "^4.17.5",
"minimist": "^0.1.0",
"mustache": "^3.0.1",
"semver": "^5.6.0",
"xlsx": "^0.14.1"
},
"devDependencies": {
"prettier": "^1.11.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0"
}
}