-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 846 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 846 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
{
"name": "ez-gen",
"version": "0.0.1",
"description": "Generates C++ projects from directory structure.",
"main": "./app/main.js",
"scripts": {
"test": "mocha tests",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha ./tests/*-test.js"
},
"bin": {
"ez-gen": "./app/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hamez0r/ez-gen.git"
},
"keywords": [
"C++",
"Project",
"Generator",
"CMake",
"directory",
"structure"
],
"author": "Andrei Epure, Alina Zagan, Dragos Mihai",
"license": "ISC",
"bugs": {
"url": "https://github.com/hamez0r/ez-gen/issues"
},
"homepage": "https://github.com/hamez0r/ez-gen#readme",
"devDependencies": {
"chai": "^4.0.2",
"istanbul": "^0.4.5",
"mocha": "^3.4.2"
}
}