forked from semantifyit/ds-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "ds-browser",
"version": "0.0.1",
"description": "Browser for Domain Specifications",
"main": "src/DSBrowser.js",
"repository": {
"type": "git",
"url": "https://github.com/semantifyit/ds-browser.git"
},
"keywords": [
"schema.org",
"Domain Specification",
"SHACL",
"semantic web"
],
"author": "Jan Schlenker for STI Innsbruck",
"license": "MIT",
"bugs": {
"url": "https://github.com/semantifyit/ds-browser/issues"
},
"homepage": "https://github.com/semantifyit/ds-browser#readme",
"scripts": {
"buildAll": "npm run-script build && npm run-script buildMinified",
"build": "browserify src/DSBrowser.js -s DSBrowser > dist/ds-browser.js",
"buildMinified": "browserify src/DSBrowser.js -s DSBrowser -g [uglifyify] > dist/ds-browser.min.js",
"eslint:check": "eslint src/*",
"test-localhost": "node test/test-app.js"
},
"dependencies": {
"schema-org-adapter": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-eslint": "^10.1.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"eslint": "^7.21.0",
"express": "^4.17.1",
"uglifyify": "^5.0.2"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"esmodules": true
}
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
]
]
}
}