-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (68 loc) · 2.25 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": "@stoneydsp/cmodule",
"version": "1.0.0-1",
"description": "My cmake-js module",
"license": "MIT",
"author": "Nathan J. Hood <nathanjhood@googlemail.com> (http://stoneydsp.com)",
"homepage": "https://github.io/StoneyDSP/cmodule",
"repository": {
"type": "git",
"url": "git://github.com/StoneyDSP/cmodule.git"
},
"bugs": {
"url": "https://github.com/StoneyDSP/cmodule/issues"
},
"scripts": {
"repl": "node --interactive",
"configure": "cmake-js configure",
"reconfigure": "cmake-js reconfigure",
"build": "cmake-js build",
"rebuild": "cmake-js rebuild",
"compile": "cmake-js compile",
"install": "cmake-js compile",
"start": "NODE_PATH=/ node test/hello.js",
"clean": "cmake-js clean && rm -rvf ./bin ./lib ./share ./build ./installed ./CMakeFiles ./CMakeCache.txt ./cmake_install.cmake ./Testing ./CTest* ./CPack*",
"wipe": "yarn clean && rm -rvf ./node_modules ./yarn.lock ./package-lock.json",
"test": "ctest --test-dir ./build --output-on-failure",
"pkg:bin": "cmake-js build -d . --target package",
"pkg:src": "cmake-js build -d . --target package_source",
"rm:ninja": "rm -rvf ./*ninja ./.ninja_deps ./.ninja_log",
"rm:msvc": "rm -rvf ./*sln ./*Proj",
"rm:make": "rm -rvf ./Makefile ./install_manifest.txt",
"rm:cpack": "rm -rvf ./CPack*",
"rm:ctest": "rm -rvf ./CTest* ./Testing",
"rm:cmake": "rm -rvf ./CMakeFiles ./Testing ./cmake_install.cmake",
"rm:cache": "rm -rvf ./CMakeCache.txt",
"rm:ipch": "rm -rvf ./.vscode/browse/ipch",
"rm:browse": "rm -rvf ./.vscode/browse/.browse*",
"rm:build": "rm -rvf ./bin ./lib ./share ./build",
"rm:install": "rm -rvf ./bin ./lib ./share ./install"
},
"packageManager": "yarn@1.22.19",
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^7.2.1",
"node-addon-api": "^6.0.0"
},
"sponsor": {
"url": "https:www.patreon.com/StoneyDSP"
},
"funding":[
"https:www.patreon.com/StoneyDSP"
],
"directories": {
"doc": "/doc",
"lib": "/build/lib",
"test": "/test"
},
"main": "./index.js",
"exports": {
"default": "./index.js",
"node": {
"import": "./index.mjs",
"require": "./index.cjs",
"default": "./index.js"
}
},
"type": "commonjs"
}