forked from brechtvdv/rdfs2ngsi-ld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.37 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
{
"name": "@brechtvdv/rdfs2ngsi-ld.js",
"version": "0.0.4",
"description": "Transform RDFS (JSON-LD) object to NGSI-LD compliant (JSON-LD) object",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"index.d.ts",
"index.js"
],
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "npm run build:ts",
"build:ts": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brechtvdv/rdfs2ngsi-ld.js.git"
},
"keywords": [
"RDFS",
"NGSI-LD"
],
"author": "Brecht Van de Vyvere",
"license": "MIT",
"bugs": {
"url": "https://github.com/brechtvdv/rdfs2ngsi-ld.js/issues"
},
"homepage": "https://github.com/brechtvdv/rdfs2ngsi-ld.js#readme",
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))-test.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true
},
"dependencies": {
},
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.1.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}