-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.6 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "gd-playground",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./src/index.mjs",
"module": "src/index.mjs",
"description": "graph data playground",
"contributors": [
{
"name": "Markus Felten",
"email": "markus.felten@gmx.de"
}
],
"license": "BSD-2-Clause",
"scripts": {
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme src/index.mjs --section=API",
"lint": "documentation lint src/index.mjs",
"posttest": "markdown-doctest",
"test": "ava"
},
"dependencies": {
"hdt": "^3.0.2",
"level-ws": "4.0.0",
"leveldown": "^6.1.1",
"levelup": "^5.1.1"
},
"devDependencies": {
"ava": "^5.0.0",
"c8": "^7.0.0",
"documentation": "^14.0.0",
"esm": "^3.2.25",
"markdown-doctest": "^1.1.0",
"semantic-release": "^19.0.1"
},
"engines": {
"node": ">=14.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/arlac77/gd-playground.git"
},
"bugs": {
"url": "https://github.com/arlac77/gd-playground/issues"
},
"homepage": "https://github.com/arlac77/gd-playground#readme",
"ava": {
"files": [
"tests/*-test.js",
"tests/*-test.mjs"
],
"require": [
"esm"
],
"babel": false,
"compileEnhancements": false,
"extensions": [
"js",
"mjs"
]
},
"template": {
"repository": {
"url": "https://github.com/arlac77/npm-package-template-esm-only.git"
}
}
}