-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.39 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
54
55
56
57
58
59
60
61
62
63
{
"name": "genx",
"version": "1.2.3",
"description": "Evented XML generation using the Genx C library",
"keywords": [
"xml",
"generation",
"generator",
"builder"
],
"homepage": "http://node-genx.wezm.net/",
"author": "Wesley Moore <wes@wezm.net> (http://www.wezm.net/)",
"contributors": [
{
"name": "Patrick Lavigne",
"url": "https://github.com/PMLavigne",
"email": "me@patrick.codes"
},
{
"name": "Morten Siebuhr",
"url": "https://github.com/msiebuhr"
},
{
"name": "JayData",
"url": "https://github.com/jaydata"
}
],
"repository": {
"type": "git",
"url": "https://github.com/wezm/node-genx"
},
"bugs": {
"url": "https://github.com/wezm/node-genx/issues"
},
"main": "./lib/genx",
"engines": {
"node": ">=0.8.0"
},
"license": "BSD-3-Clause",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/wezm/node-genx/blob/master/LICENSE"
}
],
"scripts": {
"clean": "(mkdir build || rm -rf build) && mkdir -p build",
"cmake": "cd build && cmake .. && make -j",
"cmake-debug": "cd build && cmake -DCMAKE_BUILD_TYPE=Debug .. && make -j",
"test": "mocha"
},
"optionalDependencies": {
"node-cmake": "1.x"
},
"devDependencies": {
"mocha": "^6.2.2",
"should": "1.2.x"
},
"dependencies": {
"events": "*",
"nan": "2.x"
}
}