-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 912 Bytes
/
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
{
"name": "@ds-wizard/integration-sdk",
"version": "1.1.0",
"description": "An SDK for building integrations for the Data Stewardship Wizard",
"main": "lib/index.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch --progress",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ds-wizard/dsw-integration-sdk.git"
},
"author": "Jan Slifka",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.16.0",
"babel-loader": "^8.2.3",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.62.2",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"files": [
"lib/*"
],
"bugs": {
"url": "https://github.com/ds-wizard/dsw-integration-sdk/issues"
},
"homepage": "https://github.com/ds-wizard/dsw-integration-sdk#readme"
}