-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.71 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
{
"name": "palladio-webcomponents",
"version": "0.5.4",
"description": "Palladio Web Components",
"repository": "[email protected]:simonwiles/palladio-webcomponents.git",
"homepage": "https://github.com/simonwiles/palladio-webcomponents",
"bugs": "https://github.com/simonwiles/palladio-webcomponents/issues",
"author": "Simon Wiles <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext js",
"build:map": "parcel build --detailed-report --no-cache --no-source-maps palladio-map-component.js",
"watch:map": "parcel watch palladio-map-component.js",
"build:graph": "parcel build --detailed-report --no-cache --no-source-maps palladio-graph-component.js",
"watch:graph": "parcel watch palladio-graph-component.js",
"build:cards": "parcel build --detailed-report --no-cache --no-source-maps palladio-cards-component.js",
"watch:cards": "parcel watch palladio-cards-component.js",
"build": "parcel build --detailed-report --no-cache --no-source-maps palladio-*-component.js",
"watch": "parcel watch palladio-*-component.js",
"package": "rm -rf pkg && yarn build --dist-dir pkg && rm pkg/*.png && cp README.md LICENSE pkg/",
"release": "yarn package && np --no-publish && cp package.json pkg/ && yarn publish pkg"
},
"devDependencies": {
"@parcel/transformer-image": "2.0.0",
"@parcel/transformer-inline-string": "2.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-parcel2": "^1.0.1",
"eslint-plugin-import": "^2.24.2",
"np": "^7.5.0",
"parcel": "2.0.0",
"prettier": "^2.4.1"
},
"dependencies": {
"d3": "^7.1.1",
"leaflet": "^1.7.1"
}
}