forked from dfinity/node-motoko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "motoko",
"version": "2.0.3",
"description": "Compile Motoko smart contracts in Node.js and the browser.",
"author": "Ryan Vandersmith (https://github.com/rvanasa)",
"license": "Apache-2.0",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/dfinity/node-motoko.git"
},
"scripts": {
"generate": "node utils/generate",
"test": "jest"
},
"dependencies": {
"cross-fetch": "3.1.5",
"isomorphic-parse-github-url": "1.0.2"
},
"devDependencies": {
"@wasmer/wasi": "^1.0.2",
"cross-env": "^7.0.3",
"jest": "^28.1.3",
"prettier": "^2.7.1"
},
"directories": {
"lib": "lib",
"example": "examples"
},
"files": [
"index.js",
"interpreter.js",
"lib",
"contrib",
"versions/latest"
],
"keywords": [
"motoko",
"language",
"programming-language",
"dfinity",
"smart-contract",
"canister",
"browser",
"ic",
"icp",
"internet-computer",
"blockchain",
"cryptocurrency",
"nft",
"token"
]
}