-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 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
41
42
{
"name": "@nodeutils/reqhere",
"version": "1.1.0",
"description": "Add any path to node's require path",
"main": "lib/index.js",
"scripts": {
"test": "babel src -d lib && node ./node_modules/istanbul/lib/cli.js cover ./test/test.js -x ./test/test.js",
"build": "babel src -d lib",
"coverage": "ws -p 8888 -d coverage/lcov-report/"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nodeutils/reqhere.git"
},
"keywords": [
"nodeutils",
"require",
"path",
"relative",
"__dirname"
],
"author": "Drew Llewellyn <drew@drew.pro> (http://drew.pro)",
"license": "ISC",
"bugs": {
"url": "https://github.com/nodeutils/reqhere/issues"
},
"homepage": "https://github.com/nodeutils/reqhere#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"chai": "^3.5.0",
"istanbul": "^0.4.4",
"local-web-server": "^1.2.6",
"mocha": "^3.0.2"
},
"dependencies": {
"stack-trace": "0.0.9"
}
}