forked from parro-it/libui-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.54 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
64
65
66
67
68
69
70
71
{
"name": "@w8coffee/libui-node",
"version": "0.2.4",
"description": "Node.js bindings for libui",
"repository": "knockshore/libui-node",
"license": "MIT",
"libui": "alpha3.5-master-008",
"contributors": [
{
"name": "Andrea Parodi",
"email": "[email protected]"
},
{
"name": "Niklas Mischkulnig",
"url": "https://github.com/mischnic"
},
{
"name": "Gustav Hansen",
"url": "https://github.com/kusti8"
},
{
"name": "Juha Järvi",
"url": "https://github.com/jjrv"
}
],
"scripts": {
"test": "ava",
"start": "node examples/control-gallery.js",
"start-np": "node examples/node-pad.js",
"start-core": "node examples/core-api.js",
"autogypi": "autogypi",
"node-gyp": "node-gyp",
"install": "libui-download && autogypi && npm run build",
"build": "node-gyp configure build",
"clean": "rm -rf build; rm -rf node_modules;",
"precommit": "check-clang-format \"'npm run lint'\"",
"lint": "clang-format -i --glob='{src/**/*.{h,cc,mm},index.js,examples/**/*.js}'"
},
"keywords": [
"libui",
"desktop",
"multiplatform",
"GUI"
],
"engines": {
"node": ">=8"
},
"files": [
"list-sources.js",
"index.js",
"src",
"binding.gyp",
"auto-top.gypi",
"auto.gypi",
"autogypi.json"
],
"devDependencies": {
"ava": "^0.25.0",
"clang-format": "^1.2.2",
"humanize": "0.0.9",
"husky": "^0.14.3",
"proc-stats": "0.0.4"
},
"dependencies": {
"@mischnic/async-hooks": "^0.0.4",
"autogypi": "^0.2.2",
"@w8coffee/libui-bins": "^1.1.0",
"@w8coffee/nbind": "^0.3.17",
"node-gyp": "^3.3.1"
}
}