-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "@treecg/types",
"version": "0.4.6",
"description": "TypeScript types for working with TREE/LDES/SDS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"test": "tsc --noEmit",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm test && npm run build",
"release": "npm publish --access public"
},
"dependencies": {
"@rdfjs/types": "*",
"loglevel": "^1.8.1",
"loglevel-plugin-prefix": "^0.8.4",
"rdf-data-factory": "^1.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TREEcg/types.git"
},
"keywords": [
"tree",
"ldes",
"typescript"
],
"author": "",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/TREEcg/types/issues"
},
"homepage": "https://github.com/TREEcg/types#readme"
}