-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.77 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
{
"name": "node-dependencies-check",
"version": "1.0.0",
"description": "dependencies check and post in SonarQube",
"author": "[email protected]",
"main": "src/index.js",
"bin": {
"node-dependencies-check": "dist/index.js"
},
"scripts": {
"build": "babel src -d dist",
"build-test": "babel test/src -d test/dist",
"test": "npm run build && npm run build-test && npm run ava",
"ava": "ava test/dist/*.js -s --no-cache",
"precommit": "lint-staged"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://[email protected]/myvizir/node-dependencies-check.git"
},
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.0.0"
},
"keywords": [
"dependencies",
"check",
"sonarqube"
],
"dependencies": {
"ansi-regex": "2.0.0",
"cli-table2": "0.2.0",
"colors": "1.1.2",
"fs-extra": "2.1.0",
"prettier": "^1.17.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sync-exec": "0.6.2",
"yargs-parser": "4.0.2"
},
"devDependencies": {
"ava": "0.16.0",
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.4.0",
"husky": "^0.13.3",
"lint-staged": "3.4.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
]
]
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --no-semi --trailing-comma es5",
"git add"
]
},
"directories": {
"test": "test"
}
}