-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "knockknock",
"version": "0.3.0",
"description": "Who's there? The modules that just called your code",
"homepage": "https://github.com/NotNinja/node-knockknock",
"bugs": {
"url": "https://github.com/NotNinja/node-knockknock/issues"
},
"author": {
"name": "Alasdair Mercer",
"email": "mercer.alasdair@gmail.com",
"url": "https://not.ninja"
},
"license": "MIT",
"keywords": [
"caller",
"callsite",
"stack",
"trace",
"knock",
"module",
"package"
],
"repository": {
"type": "git",
"url": "https://github.com/NotNinja/node-knockknock.git"
},
"dependencies": {
"callsite": "^1.0.0",
"debug": "*",
"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",
"mocha": "^3.4.1",
"ncp": "^2.0.0",
"tmp": "^0.0.31"
},
"main": "src/knockknock.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"
}
}