-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.63 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
{
"name": "npm-dependency-analyzer",
"version": "0.7.0",
"description": "Plugin to validate dependencies, concerning their license and vulnerabities",
"main": "index.js",
"bin": {
"npm-dependency-analyzer": "./bin/npm-dependency-analyzer.js"
},
"scripts": {
"start:dev": "nodemon --exec npm run lint",
"debug": "node ./bin/npm-dependency-analyzer | bunyan",
"clean": "rimraf build/ && rimraf lib/",
"prebuild": "npm install && npm run clean",
"build": "npm run lint && babel src -d lib && npm test",
"lint": "standard src/ --fix",
"test": "jest | bunyan"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.7.0"
},
"keywords": [
"CLI",
"vulnerabilities",
"licenses",
"npm",
"build-plugin"
],
"dependencies": {
"bunyan": "^1.8.12",
"isomorphic-fetch": "^2.2.1",
"license-checker": "^20.1.0",
"lodash": "^4.17.10",
"read-package-tree": "^5.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^22.4.3",
"nodemon": "^1.17.4",
"rimraf": "^2.6.2",
"standard": "^11.0.1"
},
"standard": {
"env": [
"jest"
],
"globals": [
"Request"
]
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8.0.0"
}
}
],
"stage-0"
]
},
"repository": {
"type": "git",
"url": "https://github.com/pt-osda/npm-dependency-analyzer.git"
},
"author": {
"name": "Tiago Lopes",
"email": "tiago.m_lopes@hotmail.com"
},
"license": "BSD-3-Clause"
}