-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.93 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
{
"name": "ldes-action",
"version": "1.3.0",
"description": "",
"main": "lib/main.js",
"scripts": {
"start": "node ./lib/main.js",
"build": "tsc",
"package": "ncc build --source-map --target es2020 lib/main.js",
"package-post": "ncc build --target es2020 lib/post.js -o dist/post",
"dist": "npm run build && npm run package && npm run package-post",
"format": "prettier --write **/*.ts",
"test": "npm run build && env-cmd npm run start",
"prepare": "husky install",
"eslint": "eslint . --ext ts",
"eslint:cache": "npm run eslint -- --cache",
"lint": "npm run eslint",
"lint:fix": "npm run eslint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TREEcg/LDES-Action.git"
},
"keywords": [],
"contributors": [
"Arno Troch <arnot2k@gmail.com>",
"Kasper Zutterman <kasperzutterman1999@gmail.com> (https://www.kasperzutterman.com/)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/TREEcg/LDES-Action/issues"
},
"homepage": "https://github.com/TREEcg/LDES-Action#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@rdfjs/data-model": "^1.3.4",
"@rdfjs/types": "^1.0.1",
"@treecg/actor-init-ldes-client": "^2.5.8",
"@treecg/bucketizers": "^1.0.5",
"@treecg/types": "0.0.16",
"@treecg/ldes-announcements": "^0.0.3",
"eslint": "^7.32.0",
"eslint-config-es": "^4.0.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-unused-imports": "^1.1.5",
"n3": "^1.12.2",
"rdf-data-factory": "^1.1.0",
"truncate-utf8-bytes": "^1.0.2",
"@dexagod/rdf-retrieval": "^1.0.2",
"jsonld-streaming-parser": "^2.4.2"
},
"devDependencies": {
"@vercel/ncc": "^0.33.1",
"env-cmd": "^10.1.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}