-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 842 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 842 Bytes
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
{
"name": "ambc",
"version": "0.1.0",
"description": "Compiles source code to Ambients protocol syntax",
"main": "src/index.js",
"bin": {
"ambc": "src/cli.js"
},
"scripts": {
"test": "make test",
"build:parser": "pegjs -o src/ir/index.js src/ir/ambients.pegjs",
"build:parser:tiny": "pegjs --optimize size -o src/ir/tiny.js src/ir/ambients.pegjs"
},
"author": "",
"license": "ISC",
"dependencies": {
"flex-js": "^1.0.5",
"js2amb": "aphelionz/js2amb#master",
"mime-types": "^2.1.25",
"multiaddr": "^7.2.1",
"orbit-db-io": "^0.1.1",
"pegjs": "^0.10.0",
"yargs": "^14.2.0"
},
"devDependencies": {
"cids": "^0.7.1",
"ipfs": "^0.39.0",
"ipfs-http-client": "^39.0.2",
"mocha": "^6.2.2",
"multihashes": "^0.4.15"
},
"standard": {
"env": "mocha"
}
}