-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "libui-napi",
"author": "Andrea Parodi (andrea@parro.it)",
"version": "0.1.26",
"description": "Experimental bindings for libui using n-api",
"repository": "parro-it/libui-napi",
"license": "MIT",
"keywords": [
"libui",
"desktop",
"multiplatform",
"GUI"
],
"engines": {
"node": ">=6.14.2"
},
"libui": "alpha4.1",
"scripts": {
"docs": "node tools/docs.js",
"start": "node --expose-gc example.js",
"download-libui": "node tools/libui-download.js",
"download-libui-napi": "node tools/libui-napi-download.js",
"clean": "rimraf build *.h *.node libui.* node_modules/!(rimraf|.bin)",
"rebuild": "rimraf build *.node && node-gyp configure build",
"build": "node-gyp configure build",
"install": "npm run --silent download-libui && npm run --silent download-libui-napi || npm run build",
"test": "cross-env LIBUI_TARGET=test node-gyp configure build && cross-env LIBUI_TARGET=test DEBUG=ControlInternal tape tests/*.js | tap-spec",
"precommit": "check-clang-format \"'npm run lint'\"",
"lint": "clang-format -i --glob='{tests/**/*.{h,c,m,js},example/*.js,js/**/*.js,src/**/*.{h,c,m},index.js,example.js,libui-napi.d.ts,test.js,example/gallery/src/**/*.js,tools/**/*.js,test_ui.js}'"
},
"dependencies": {
"@creditkarma/async-hooks": "0.0.4",
"cachedir": "^2.1.0",
"debug": "^3.1.0",
"extract-zip": "^1.6.7",
"is-ci": "^1.1.0",
"mkdirp": "^0.5.1",
"mv": "^2.1.1",
"node-gyp": "^3.6.2",
"tar": "^4.4.1"
},
"devDependencies": {
"ava": "^0.25.0",
"boxen": "^1.3.0",
"clang-format": "^1.2.3",
"cross-env": "^5.1.4",
"husky": "^0.14.3",
"jsdoc-to-markdown": "^4.0.1",
"now": "^11.1.11",
"p-map": "^1.2.0",
"rimraf": "^2.6.2",
"screenshot-tester": "^0.3.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.0",
"to-dot-case": "^1.0.0"
},
"files": [
"tools",
"js",
"libui-napi.d.ts",
"index.js",
"src",
"binding.gyp"
],
"types": "libui-napi.d.ts"
}