-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "primea-annotations",
"version": "0.0.10",
"description": "parsing/encoding for primea's type annotations",
"main": "index.js",
"scripts": {
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"lint": "standard",
"test": "node ./tests/index.js",
"build:docs": "documentation build --github -f md ./index.js > ./docs/index.md"
},
"keywords": [
"primea"
],
"bin": {
"primea-annotate": "./bin/annotate"
},
"author": "mjbecze <[email protected]>",
"license": "MPL-2.0",
"dependencies": {
"buffer-pipe": "0.0.3",
"leb128": "0.0.4",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"coveralls": "^3.0.0",
"documentation": "^7.0.0",
"minimist": "^1.2.0",
"nyc": "^12.0.1",
"standard": "^11.0.1",
"tape": "^4.9.0",
"wabt": "^1.0.0",
"wasm-json-toolkit": "0.2.6"
},
"repository": {
"type": "git",
"url": "[email protected]:primea/primea-annotations.git"
},
"bugs": {
"url": "https://github.com/primea/primea-annotations/issues"
},
"homepage": "https://github.com/primea/primea-annotations"
}