-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.2 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
47
48
49
50
51
52
53
{
"name": "ninja-build-gen",
"version": "0.2.2",
"description": "Programmatically create Ninja build-system files",
"keywords": [
"ninja",
"build",
"system",
"builder",
"generate",
"build.ninja"
],
"homepage": "https://github.com/jeanlauliac/ninja-build-gen",
"bugs": "https://github.com/jeanlauliac/ninja-build-gen/issues",
"license": {
"type": "MIT",
"url": "https://raw.github.com/jeanlauliac/ninja-build-gen/master/LICENSE"
},
"author": "Jean Lauliac <[email protected]>",
"contributors": [
"Tylor Reynolds"
],
"files": [
"lib"
],
"main": "lib/ninja-build-gen.js",
"repository": {
"type": "git",
"url": "git://github.com/jeanlauliac/ninja-build-gen.git"
},
"scripts": {
"prepublish": "grunt",
"test": "mocha"
},
"dependencies": {
"source-map-support": "^0.4.0"
},
"devDependencies": {
"coffee-script": "~1.6.3",
"coffeelint": "~0.5.6",
"grunt": "~0.4.1",
"grunt-cli": "^1.2.0",
"grunt-coffeelint": "0.0.7",
"grunt-contrib-coffee": "~0.7.0",
"grunt-mocha": "~0.3.4",
"grunt-mocha-test": "~0.5.0",
"matchdep": "~0.1.1",
"mocha": "~1.12.0"
},
"engines": {
"node": ">=0.8.0"
}
}