-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.2 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
{
"name": "ds-editor",
"version": "0.0.1",
"description": "Domain Specification Editor",
"main": "src/js/DSEditor.js",
"repository": {
"type": "git",
"url": "git+https://github.com/semantifyit/ds-editor.git"
},
"keywords": [
"ds-editor",
"domain specification",
"shacl",
"schema.org",
"semantic web",
"linked",
"data"
],
"dependencies": {
"schema-org-adapter": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"uglifyify": "^5.0.2"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"esmodules": true
}
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
]
]
},
"author": "Jan Schlenker for STI Innsbruck",
"license": "MIT",
"bugs": {
"url": "https://github.com/semantifyit/ds-editor/issues"
},
"homepage": "https://github.com/semantifyit/ds-editor#readme"
}