-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"version": "1.1.1",
"name": "pkg-config",
"description": "parse the closest `package.json` and get package specific configurations",
"author": "Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/)",
"homepage": "https://github.com/ahmadnassri/pkg-config",
"repository": "ahmadnassri/pkg-config",
"license": "MIT",
"keywords": [
"pkg-config"
],
"engines": {
"node": ">= 4"
},
"files": [
"index.js"
],
"bugs": {
"url": "https://github.com/ahmadnassri/pkg-config/issues"
},
"scripts": {
"pretest": "standard && echint",
"test": "mocha",
"posttest": "npm run coverage",
"coverage": "istanbul cover --dir coverage _mocha -- -R dot",
"codeclimate": "codeclimate < coverage/lcov.info"
},
"echint": {
"ignore": [
"coverage/**"
]
},
"devDependencies": {
"codeclimate-test-reporter": "0.5.1",
"echint": "^4.0.1",
"istanbul": "^0.4.2",
"mocha": "^6.0.0",
"should": "^11.0.0",
"standard": "^12.0.0"
},
"dependencies": {
"debug-log": "^1.0.0",
"find-root": "^1.0.0",
"xtend": "^4.0.1"
}
}