-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 948 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
42
43
44
45
46
47
48
{
"name": "spofcheck",
"description": "A CLI tool for detecting frontend SPOF",
"version": "0.1.7",
"keywords": [
"SPOF",
"Frontend SPOF",
"SPOF Check",
"spofcheck"
],
"main": "./bin/spofcheck.js",
"homepage": "https://github.com/senthilp/spofcheck/blob/master/README.md",
"contributors": [
"Senthil Padmanabhan",
"Venkat Sundramurthy"
],
"repository": {
"type": "git",
"url": "https://github.com/senthilp/spofcheck"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/senthilp/spofcheck/blob/master/LICENSE"
}
],
"dependencies": {
"nopt": "2.0.0",
"request": "^2.88.2",
"async": "0.1.22",
"jsdom": "^9.8.3",
"jquery": "^3.1.1",
"mkdirp": "0.3.4",
"q": "~1.0.1"
},
"devDependencies": {
"rimraf": "2.0.2"
},
"bin": {
"spofcheck": "./bin/spofcheck.js"
},
"scripts": {
"test": "node tests/spofcheck.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}