-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
{
"name": "@city-ol/orienteering-icons",
"version": "1.0.3",
"description": "Generate icons relevant for orienteering in an SVG format.",
"main": "lib/orienteering-icon.js",
"module": "lib/orienteering-icon.js",
"types": "lib/orienteering-icon.d.ts",
"type": "module",
"scripts": {
"build": "rimraf lib && tsc && rollup -c rollup.config.mjs",
"build:watch": "tsc --watch",
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"serve": "wds --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/City-OL/orienteering-icons.git"
},
"keywords": [
"orienteering"
],
"author": "Tim Mutkala <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/City-OL/orienteering-icons/issues"
},
"homepage": "https://github.com/City-OL/orienteering-icons#readme",
"dependencies": {
"lit": "^3.0.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.9.0",
"@open-wc/testing": "^3.2.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@web/dev-server": "^0.3.3",
"@web/dev-server-legacy": "^2.0.1",
"@webcomponents/webcomponentsjs": "^2.8.0",
"eslint": "^8.51.0",
"lit-analyzer": "^0.0.6",
"rollup-plugin-summary": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.2.2"
},
"customElements": "custom-elements.json"
}