-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 997 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 997 Bytes
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
{
"name": "require-self-ref",
"version": "2.0.1",
"description": "Solves the relative path problem in Node.js by allowing a require call to reference the current package",
"main": "src/index.js",
"scripts": {
"test": "npm run mocha && npm run jshint",
"mocha": "mocha --ui bdd --reporter spec ./test",
"jshint": "jshint src/"
},
"keywords": [
"require",
"relative",
"path",
"resolve"
],
"author": "Patrick Steele-Idem <pnidem@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"jshint": "^2.9.3",
"mocha": "^3.0.2"
},
"dependencies": {
"lasso-package-root": "^1.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrick-steele-idem/require-self-ref.git"
},
"bugs": {
"url": "https://github.com/patrick-steele-idem/require-self-ref/issues"
},
"homepage": "https://github.com/patrick-steele-idem/require-self-ref#readme"
}