2018-04-28 17:26:38 +09:00
|
|
|
{
|
|
|
|
"name": "test-module",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"scripts": {
|
2020-10-15 21:16:52 +09:00
|
|
|
"build": "node ../cli/scripts/index.js build --features \"latest\"",
|
|
|
|
"build-napi3": "node ../cli/scripts/index.js build --features \"napi3\"",
|
|
|
|
"build-aarch64": "node ../cli/scripts/index.js build --features \"latest\" --target aarch64-unknown-linux-gnu",
|
2020-12-08 12:23:26 +09:00
|
|
|
"build-armv7": "node ../cli/scripts/index.js build --features \"latest\" --target armv7-unknown-linux-gnueabihf",
|
2020-10-15 21:16:52 +09:00
|
|
|
"build-i686": "node ../cli/scripts/index.js build --features \"latest\" --target i686-pc-windows-msvc",
|
|
|
|
"build-i686-release": "node ../cli/scripts/index.js build --release --features \"latest\" --target i686-pc-windows-msvc",
|
|
|
|
"build-release": "node ../cli/scripts/index.js build --features \"latest\" --release",
|
2020-03-12 23:17:39 +09:00
|
|
|
"test": "node ./index.js"
|
2018-04-28 17:26:38 +09:00
|
|
|
}
|
2020-12-08 12:23:26 +09:00
|
|
|
}
|