This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.64 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
{
"name": "runo-bridge",
"version": "0.2.1",
"description": "Simple Rust to NodeJS bridge",
"repository": {
"type": "git",
"url": "https://github.com/andruhon/runo-bridge"
},
"main": "dist/runo-bridge.js",
"bin": "dist/runo-bridge.js",
"scripts": {
"test": "npm run build && mocha",
"test-full": "npm run build && mocha && npm run integration-test",
"build": "tsc",
"int-install-deps": "cd test/resources && npm install",
"int-generate-cc": "node dist/runo-bridge.js generate test/resources/src/embed.rs test/resources/src/addon.cc --async detect",
"int-build-rust": "cd test/resources && cargo build",
"int-clean": "cd test/resources && node build-scripts/clean.js",
"int-install-rust": "cd test/resources && node build-scripts/install-rust.js",
"int-build-addon": "npm run int-install-rust && cd test/resources && node-gyp configure && node-gyp build",
"int-run": "cd test/integration && mocha",
"integration-test": "npm run int-clean && npm run int-install-deps && npm run integration-test-short",
"integration-test-short": "npm run int-generate-cc && npm run int-build-rust && npm run int-install-rust && npm run int-build-addon && npm run int-run"
},
"author": "Andrew Kondratev <[email protected]>",
"keywords": [
"Rust",
"NodeJS"
],
"license": "ISC",
"devDependencies": {
"fs-extra": "^0.26.5",
"mocha": "^2.4.5",
"retyped-commander-tsd-ambient": "^2.3.0-0",
"retyped-node-tsd-ambient": "^1.5.3-0",
"retyped-prettyjson-tsd-ambient": "0.0.0-0",
"typescript": "^1.8.2"
},
"dependencies": {
"commander": "^2.9.0",
"prettyjson": "^1.1.3"
}
}