-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 3.19 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@wizardhealth/wh-dropdown",
"version": "1.0.1",
"description": "Simple dropdown custom component",
"main": "dist/dropdown.js",
"module": "dist/dropdown.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"dist/*.js",
"dist/*.js.map",
"dist/types/**/*"
],
"type": "module",
"scripts": {
"build": "tsc --outDir dist/ && rollup -c",
"build:watch": "tsc --watch",
"clean": "rimraf dropdown.{d.ts,d.ts.map,js,js.map} test/dropdown.{d.ts,d.ts.map,js,js.map} test/dropdown_test.{d.ts,d.ts.map,js,js.map} item.{d.ts,d.ts.map,js,js.map} test/item.{d.ts,d.ts.map,js,js.map} test/item_test.{d.ts,d.ts.map,js,js.map}",
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:lit-analyzer": "lit-analyzer",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
"docs": "npm run docs:clean && npm run build && npm run analyze && npm run docs:build && npm run docs:assets && npm run docs:gen",
"docs:clean": "rimraf docs",
"docs:gen": "eleventy --config=.eleventy.cjs",
"docs:gen:watch": "eleventy --config=.eleventy.cjs --watch",
"docs:build": "rollup -c --file docs/dropdown.bundled.js",
"docs:assets": "cp node_modules/prismjs/themes/prism-okaidia.css docs/",
"docs:serve": "wds --root-dir=docs --node-resolve --watch",
"analyze": "wca analyze \"src/**/*.ts\" --outFile custom-elements.json",
"serve": "wds --watch",
"start": "web-dev-server",
"pretest": "npm run build",
"test": "wtr",
"test:watch": "npm run test -- --watch",
"checksize": "rollup -c ; cat dropdown.bundled.js | gzip -9 | wc -c ; rm dropdown.bundled.js"
},
"keywords": [
"dropdown",
"web-components",
"lit-element",
"typescript",
"lit"
],
"author": "Vernes Pendic, Dino Maric",
"license": "MIT",
"bugs": {
"url": "https://github.com/WizardComputer/wh-dropdown/issues"
},
"homepage": "https://github.com/WizardComputer/wh-dropdown#readme",
"dependencies": {
"lit": "^2.0.0-rc.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WizardComputer/wh-dropdown.git"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@esm-bundle/chai": "^4.1.5",
"@open-wc/testing": "^2.5.32",
"@open-wc/testing-karma": "^4.0.9",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@web/dev-server": "0.0.29",
"@web/dev-server-esbuild": "^0.2.12",
"@web/dev-server-rollup": "^0.2.7",
"@web/test-runner": "^0.12.15",
"@web/test-runner-mocha": "^0.3.5",
"@web/test-runner-playwright": "^0.8.4",
"@webcomponents/webcomponentsjs": "^2.5.0",
"deepmerge": "^4.2.2",
"eslint": "^6.8.0",
"lit-analyzer": "^1.1.10",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.28.2",
"rollup-plugin-summary": "^1.2.3",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^3.8.3",
"web-component-analyzer": "^1.0.3"
}
}