-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"name": "pacscan",
"version": "0.2.0",
"description": "Scans for available packages",
"homepage": "https://github.com/NotNinja/node-pacscan",
"bugs": {
"url": "https://github.com/NotNinja/node-pacscan/issues"
},
"author": {
"name": "Alasdair Mercer",
"email": "[email protected]",
"url": "https://not.ninja"
},
"license": "MIT",
"keywords": [
"package",
"scan",
"scanner"
],
"repository": {
"type": "git",
"url": "https://github.com/NotNinja/node-pacscan.git"
},
"dependencies": {
"debug": "*",
"glob": "^7.1.1",
"knockknock": "^0.3.0",
"pkg-dir": "^2.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^2.2.0",
"eslint": "^3.19.0",
"eslint-config-notninja": "^0.1.1",
"istanbul": "^0.4.5",
"mkdirp": "^0.5.1",
"mocha": "^3.4.1",
"ncp": "^2.0.0",
"tmp": "^0.0.31"
},
"main": "src/pacscan.js",
"scripts": {
"ci": "npm run test",
"report-coverage": "istanbul cover _mocha --report lcovonly -- -R list \"test/**/*.spec.js\" && codecov",
"pretest": "eslint \"src/**/*.js\" \"test/**/*.js\"",
"test": "istanbul cover _mocha -- -R list \"test/**/*.spec.js\"",
"posttest": "istanbul check-coverage"
},
"engines": {
"node": ">=4"
}
}