forked from awjh/license-check-and-add
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 811 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
{
"name": "license-check-and-add",
"version": "1.0.0",
"description": "A tool to enable the checking of license headers and inserting of them",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html mocha",
"posttest": "nyc check-coverage --lines 100 --branches 95.16 --statements 100 --functions 100"
},
"bin": {
"license-check-and-add": "bin/server.js"
},
"directories": {
"test": "test"
},
"dependencies": {
"pkg-conf": "^1.1.2"
},
"devDependencies": {
"mocha": "^2.0.1",
"chai": "3.5.0",
"nyc": "11.3.0",
"sinon": "2.3.8"
},
"repository": {
"type": "git",
"url": "github.com/awjh/license-check-and-add"
},
"keywords": [
"license",
"check",
"license",
"header"
],
"author": "awjh",
"license": "MIT"
}