-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "shacl-check",
"version": "1.0.4",
"description": "Subset of SHACL test functionality.",
"main": "shacl-check.js",
"files": [
"shacl-check.js"
],
"scripts": {
"build-lib": "babel src -d lib",
"build-browserified": "browserify -r ./src/shacl-check.js -t babelify --exclude 'xhr2' > dist/shacl-check.js",
"build-minified": "browserify -r ./src/index.js:shacl-check -t babelify --exclude 'xhr2' -d -p [minifyify --no-map] > dist/solid.min.js",
"prebuild": "npm run clean && mkdir -p dist",
"build": "npm run build-lib && npm run build-browserified && npm run build-minified",
"clean": "rm -rf dist/ && rm -rf lib/",
"standard": "standard src/*",
"pretest": "npm run standard"
},
"repository": {
"type": "git",
"url": "https://github.com/linkeddata/shacl-check"
},
"keywords": [
"shacl",
"shape",
"rdf",
"ldp",
"linked",
"data"
],
"author": "Tim Berners-Lee <[email protected]>",
"contributors": [
"Daniel Friedman <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/linkeddata/shacl-check/issues"
},
"homepage": "https://github.com/linkeddata/shacl-check",
"dependencies": {
"rdflib": ">=0.15.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"minifyify": "^7.2.1",
"qunit": "^0.9.0",
"standard": "^5.4.1",
"tape": "^4.4.0"
},
"standard": {
"globals": [
"$rdf",
"QUnit"
]
}
}