-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 755 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 755 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
{
"name": "gloom",
"version": "0.0.1",
"description": "A small build system for C/C++ written in Node.js",
"author": "echopoint <echopoint@tutanota.com>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/echopoint/gloom/issues"
},
"homepage": "https://github.com/echopoint/gloom#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/echopoint/gloom.git"
},
"preferGlobal": true,
"main": "index.js",
"engine": {
"node": ">= 6"
},
"scripts": {
"lint": "eslint .",
"test": "tap test/*.js",
"coverage": "tap test/*.js --coverage --coverage-report=lcov"
},
"devDependencies": {
"eslint": "^4.12.1",
"jsdoc": "^3.5.5",
"tap": "^10.7.3"
}
}