This repository was archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 KB
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
{
"name": "solid-tpf",
"version": "0.1.0",
"description": "Triple Pattern Fragments interface to a Solid server",
"repository": {
"type": "git",
"url": "git+https://github.com/solid/solid-tpf.git"
},
"keywords": [
"Linked Data",
"Solid"
],
"author": "Ruben Verborgh <ruben@verborgh.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-tpf/issues"
},
"homepage": "https://github.com/solid/solid-tpf#readme",
"main": "lib/index.js",
"bin": {
"solid-to-tpf": "bin/solid-to-tpf"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "mocha",
"prepare": "gulp build",
"lint": "eslint bin/* *.js src/*.js test/**/*.js"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"mocha": "^3.4.2",
"pre-commit": "^1.2.2",
"promisify-node": "^0.4.0",
"source-map-support": "^0.4.15"
},
"pre-commit": [
"test"
],
"dependencies": {
"babel-polyfill": "^6.23.0",
"memoizee": "^0.4.5",
"mime-types": "^2.1.16",
"rdf-ext": "^1.0.0",
"rdf-formats-common": "^1.0.1",
"rimraf": "^2.6.1",
"solid-permissions": "^0.5.1"
}
}