-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
54
55
{
"name": "@eifil/amt-ipld",
"version": "2.0.3",
"description": "Array Mapped Trie (Persistent Vector) implementation using IPLD.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "npm run test:build && npm run test:ava",
"test:build": "tsc --project tsconfig.test.json",
"test:ava": "ava --verbose 'dist/**/*.spec.js' --timeout=1m",
"lint": "standard 'src/**/*.ts'",
"coverage": "c8 npm test && c8 report --reporter lcov --reporter html"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eifil/amt-ipld.git"
},
"keywords": [
"AMT",
"trie",
"array",
"mapped",
"IPLD",
"CBOR"
],
"author": "Alan Shaw",
"license": "(Apache-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/eifil/amt-ipld/issues"
},
"homepage": "https://github.com/eifil/amt-ipld#readme",
"dependencies": {
"@eifil/ipld-cbor": "^0.0.1",
"multiformats": "^4.5.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"ava": "^3.15.0",
"c8": "^7.4.0",
"eslint": "^7.18.0",
"standard": "^16.0.3",
"typescript": "^4.1.3"
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}