-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 865 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
{
"name": "ls-installed-deps",
"version": "0.0.1",
"description": "Recursively gathers names and versions of installed dependencies",
"engines": {
"node": ">=8"
},
"keywords": [
"dependencies",
"deps",
"find",
"installed",
"list",
"ls",
"modules",
"node_modules",
"package",
"recursive"
],
"license": "MIT",
"repository": "github:chrisdothtml/ls-installed-deps",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard '**/*.js' --verbose | snazzy && flow check",
"test": "ava -v",
"test+coverage": "nyc npm test"
},
"devDependencies": {
"ava": "^1.1.0",
"coveralls": "^3.0.2",
"flow-bin": "^0.90.0",
"nyc": "^13.1.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1"
}
}