-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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": "barney",
"version": "1.1.4",
"description": "Intercept require calls",
"main": "index.js",
"scripts": {
"lint": "gulp lint",
"test-and-coverage": "./node_modules/.bin/istanbul cover -x test.js ./node_modules/mocha/bin/_mocha -- --reporter=spec ./test.js",
"test": "npm run lint && npm run test-and-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/mkretschek/node-barney"
},
"keywords": [
"require",
"node",
"intercept",
"dependency",
"module"
],
"author": "Mathias Kretschek <contact@mathias.ms>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mkretschek/node-barney/issues"
},
"homepage": "https://github.com/mkretschek/node-barney",
"devDependencies": {
"chai": "^2.1.1",
"gulp": "^3.8.11",
"gulp-jshint": "^1.9.2",
"gulp-mocha": "^2.0.0",
"istanbul": "^0.3.7",
"jshint-stylish": "^1.0.1",
"mocha": "^2.2.1",
"sinon": "^1.14.0",
"sinon-chai": "^2.7.0",
"yargs": "^3.5.4"
}
}