forked from ricobank/snek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "snek",
"version": "0.0.1",
"description": "snek",
"main": "index.js",
"scripts": {
"initialize": "npm i && npm run download-submodules && npm run install-submodules",
"download-submodules": "git submodule update --init --recursive --remote",
"install-submodules": "npm run init:multifab",
"init:multifab": "cd lib/multifab && npm i && npm run test",
"test": "cd test && node ../index.js test",
"test-snek": "npx mocha test test/snek",
"build-general": "pkg -t node16 index.js --output snek --config package.json",
"build-linux": "npm run build-general && sudo cp -f ./snek /usr/local/bin"
},
"pkg": {
"assets": "snek.vy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricobank/snek.git"
},
"author": "",
"license": "",
"homepage": "https://github.com/ricobank/snek#readme",
"dependencies": {
"@etherpacks/dpack": "^0.0.29",
"chalk": "^4.1.2",
"commander": "^9.3.0",
"ethers": "^5.6.8",
"minihat": "^0.0.6"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"pkg": "^5.7.0"
}
}