-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.1 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
{
"name": "sparqler",
"version": "0.8.0",
"registry": "npm",
"description": "SPARQL query buildER for JavaScript/TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/CarbonLDP/sparqler.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/CarbonLDP/sparqler/issues"
},
"homepage": "https://github.com/CarbonLDP/sparqler#README",
"contributors": [
{
"name": "Rodolfo Aguirre",
"email": "rodolfo.aguirre@base22.com"
},
{
"name": "Miguel Aragón",
"email": "miguel.aragon@base22.com"
},
{
"name": "Iñaki Janeiro",
"email": "inaki.janeiro@base22.com"
}
],
"main": "dist/.cjs/index.js",
"module": "dist/.esm5/index.js",
"es2015": "dist/.esm2015/index.js",
"typings": "dist/.types/index.d.ts",
"scripts": {
"build": "gulp build",
"start": "npm run-script build",
"test": "gulp test"
},
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.2.1",
"@types/del": "^3.0.1",
"@types/gulp": "^4.0.5",
"@types/gulp-filter": "^3.0.32",
"@types/gulp-jasmine": "^2.4.2",
"@types/gulp-json-editor": "^2.2.31",
"@types/gulp-sourcemaps": "0.0.32",
"@types/jasmine": "^2.8.16",
"@types/karma": "^3.0.1",
"@types/node": "^8.10.26",
"@types/source-map-support": "^0.4.1",
"carbonldp-ts-docs-engine": "^1.0.1",
"del": "3.0.0",
"glob": "^7.1.2",
"gulp": "^4.0.2",
"gulp-filter": "5.0.1",
"gulp-jasmine": "^2.4.2",
"gulp-json-editor": "2.2.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.2",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.4.0",
"karma-typescript": "^4.0.0",
"rollup": "^1.27.5",
"rollup-plugin-node-resolve": "^5.2.0",
"source-map-support": "^0.5.9",
"ts-node": "^5.0.1",
"typescript": "^3.6.4"
},
"private": true
}