-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 864 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
{
"name": "npm-viewscripts",
"version": "1.0.1",
"bin": {
"npm-viewscripts": "cli.js"
},
"main": "index.js",
"description": "View which npm dependencies in a project are using npm scripts",
"scripts": {
"test": "jest test/cli.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/js-kyle/npm-viewscripts.git"
},
"author": "Kyle Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/js-kyle/npm-viewscripts/issues"
},
"keywords": [
"npm",
"security",
"audit",
"postinstall",
"preinstall",
"postuninstall",
"ignore-scripts"
],
"homepage": "https://github.com/js-kyle/npm-viewscripts#readme",
"dependencies": {
"directory-tree": "^2.3.1"
},
"preferGlobal": true,
"devDependencies": {
"execa": "^2.1.0",
"jest": "^24.9.0"
}
}