-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.28 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
82
83
84
85
86
87
88
89
{
"name": "rdf-play",
"version": "1.0.0",
"description": "Client-side playground for RDF",
"keywords": [
"rdf",
"parse",
"stream",
"rdfjs",
"linked data",
"play",
"serialize",
"dereference"
],
"main": "index.js",
"typings": "index",
"repository": "git@github.com:rubensworks/rdf-play.js.git",
"author": "Ruben Taelman <rubensworks@gmail.com>",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/rubensworks/"
},
"bugs": {
"url": "https://github.com/rubensworks/rdf-play.js/issues"
},
"homepage": "https://github.com/rubensworks/rdf-play.js#readme",
"license": "MIT",
"files": [
"lib/**/*.ts",
"lib/**/*.css",
"lib/**/*.html",
"lib/**/*.svg"
],
"pre-commit": [
"lint"
],
"devDependencies": {
"file-loader": "^6.2.0",
"manual-git-changelog": "^1.0.1",
"node-polyfill-webpack-plugin": "^4.0.0",
"pre-commit": "^1.2.2",
"ts-loader": "^9.5.1",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^6.0.0",
"webpack-dev-server": "^5.1.0"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"scripts": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tslint index.ts lib/**/*.ts test/**/*.ts --exclude '**/*.d.ts'",
"build": "webpack serve --config webpack.config.js --mode development",
"validate": "npm ls",
"version": "manual-git-changelog onversion",
"start": "webpack serve --config webpack.config.js --mode production",
"production": "webpack --config webpack.config.js --mode production"
},
"dependencies": {
"@comunica/actor-http-proxy": "^4.0.2",
"@rdfjs/types": "*",
"n3": "^1.22.3",
"@types/n3": "^1.21.1",
"rdf-dereference": "^4.0.0",
"rdf-string": "^1.6.3"
}
}