-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 974 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
41
{
"name": "license-tool",
"version": "0.0.9",
"description": "A tool to validate license header, or modify license of target file.",
"keywords": [
"license-tool",
"license"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackjia-ibm/license-tool.git"
},
"author": "Jack T. Jia <[email protected]>",
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/jackjia-ibm/license-tool/issues"
},
"homepage": "https://github.com/jackjia-ibm/license-tool#readme",
"engines": {
"node": ">=8.0"
},
"preferGlobal": true,
"bin": {
"license-tool": "cli.js"
},
"dependencies": {
"glob": "^7.1.2",
"shebang-regex": "^2.0.0",
"winston": "^3.0.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"eslint": "^5.2.0",
"gitignore-to-glob": "^0.3.0"
}
}