-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
89 lines (89 loc) · 2.05 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
89
{
"name": "license-check-and-add",
"version": "4.0.6",
"description": "A tool to enable the checking, inserting and removal of licenses",
"bin": {
"license-check-and-add": "dist/src/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "npm run build -- -w",
"preintegration": "npm run build",
"prepare": "npm run build",
"integration": "mocha -r ts-node/register 'test/**/*.spec.ts'",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "npm run lint && npm run unit && npm run integration",
"unit": "nyc mocha -r ts-node/register 'src/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awjh/license-check-and-add.git"
},
"keywords": [
"license",
"check",
"header",
"add",
"insert",
"remove",
"regex",
"pattern",
"match",
"copyright"
],
"author": "awjh",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/awjh/license-check-and-add/issues"
},
"homepage": "https://github.com/awjh/license-check-and-add#readme",
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"exclude": [
"coverage/**",
"dist/**",
"**/*.spec.ts",
"test/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"dependencies": {
"fs-extra": "^8.1.0",
"gitignore-to-glob": "^0.3.0",
"globby": "^10.0.1",
"ignore": "^5.1.2",
"yargs": "^13.3.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^7.0.2",
"@types/mockery": "^1.4.29",
"@types/node": "^12.6.8",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"@types/yargs": "^13.0.0",
"chai": "^4.2.0",
"mocha": "^9.1.3",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}