-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 866 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 866 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
39
40
41
42
43
44
45
{
"name": "@lite-js/module-path",
"version": "0.0.2",
"description": "locate the path of an installed node module",
"main": "index.js",
"bugs": {
"url": "https://github.com/lite-js/module-path/issues"
},
"dependencies": {},
"devDependencies": {
"commander": "^2.9.0",
"mocha": "^3.4.2",
"pre-commit": "^1.2.2",
"standard": "^10.0.2"
},
"engines": {
"node": ">=0.8.0"
},
"keywords": [
"module",
"path",
"module-path",
"node-module-path"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:lite-js/module-path.git"
},
"bin": {
"module-path": "./bin/module-path.js"
},
"pre-commit": {
"run": [
"lint",
"test"
],
"silent": false
},
"scripts": {
"lint": "standard",
"lint-fix": "standard --fix",
"test": "mocha"
}
}