-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
46 lines (46 loc) · 982 Bytes
/
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
{
"name": "trifid-plugin-spex",
"description": "Trifid SPEX plugin",
"type": "module",
"main": "index.js",
"version": "2.2.2",
"license": "Apache-2.0",
"homepage": "https://github.com/zazuko/trifid",
"repository": {
"type": "git",
"url": "https://github.com/zazuko/trifid.git",
"directory": "packages/spex"
},
"bugs": {
"url": "https://github.com/zazuko/trifid/issues"
},
"scripts": {
"test": "c8 --all --reporter=lcovonly --reporter=text node --test **/*.test.js"
},
"dependencies": {
"@fastify/static": "^8.0.4",
"@zazuko/spex": "^0.2.1",
"import-meta-resolve": "^4.1.0"
},
"author": {
"name": "Zazuko GmbH",
"url": "https://zazuko.com/"
},
"keywords": [
"trifid",
"trifid-plugin",
"spex"
],
"files": [
"index.js",
"views/"
],
"devDependencies": {
"c8": "^10.1.3",
"trifid-core": "^5.1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}