forked from holochain/holochain-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "@holochain/holochain-nodejs-bleeding",
"version": "0.2.3",
"description": "Nodejs Holochain Container primarily for test execution",
"repository": {
"type": "git",
"url": "https://github.com/holochain/holochain-rust.git"
},
"main": "index.js",
"author": "Holochain Core Dev Team <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64"
],
"scripts": {
"compile": "neon build --release",
"clean": "neon clean",
"test": "tape test/*"
},
"dependencies": {
"node-pre-gyp": "^0.11.0",
"neon-cli": "^0.2.0"
},
"devDependencies": {
"neon-cli": "^0.2.0",
"shelljs": "^0.8.2",
"tape": "^4.9.1"
},
"binary": {
"module_name": "index",
"module_path": "./bin-package",
"host": "https://github.com/holochain/holochain-rust/releases/download/",
"remote_path": "holochain-nodejs-v{version}"
},
"publishConfig": {
"access": "public"
}
}