-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.38 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "jsonld-graph",
"version": "5.0.11",
"description": "Library to parse, inspect and mutate JSON-LD documents as an in-memory graph.",
"keywords": [
"jsonld",
"graph",
"jsonld graph"
],
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf ./lib && rimraf ./coverage",
"coverage": "rimraf ./coverage && npm run test && opener ./coverage/index.html",
"lint": "eslint . --ext .ts --fix --ignore-pattern lib",
"build": "npm run lint && tsc",
"build-dist": "npm run clean && npm run build && npm run test",
"prepublishOnly": "npm run build-dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riteshrao/jsonld-graph.git"
},
"author": "Ritesh Rao",
"license": "MIT",
"bugs": {
"url": "https://github.com/riteshrao/jsonld-graph/issues"
},
"homepage": "https://github.com/riteshrao/jsonld-graph#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/jsonld": "^1.5.5",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^15.12.1",
"@types/shortid": "0.0.29",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^33.0.1",
"jest": "^27.0.4",
"opener": "^1.5.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"dependencies": {
"@types/uuid": "^8.3.0",
"jsiterable": "^3.0.5",
"jsonld": "^5.2.0",
"shortid": "^2.2.16",
"uuid": "^8.3.2"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"testRegex": "/src/.*(test|spec)\\.(ts|js)$",
"coverageDirectory": "coverage",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!**/*.spec.*",
"!**/test/*",
"!src/**/*.d.ts"
],
"coverageReporters": [
"text-summary",
"json",
"html"
]
}
}