-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.77 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
{
"name": "@ulic75/flat-slider",
"description": "Webcomponent flat-slider following open-wc recommendations",
"license": "MIT",
"author": "Joshua Reilly",
"version": "0.0.4",
"main": "./dist/flat-slider.cjs",
"module": "./dist/flat-slider.js",
"types": "./dist/flat-slider.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "run-s --print-label build:**",
"build:clean": "pnpm clean",
"build:rollup": "rollup -c",
"build:analyze": "cem analyze --litelement --globs 'dist/flat-slider.js'",
"docs:start": "cd docs && bundle exec jekyll serve",
"clean": "rimraf 'dist' '**/.tsbuildinfo' '.rollup.cache'",
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"start": "run-p --print-label start:**",
"start:clean": "rimraf 'dist' '**/.tsbuildinfo' '.tmp'",
"start:rollup": "rollup -cw",
"start:wds": "wait-on dist/flat-slider.js && wds",
"test": "run-s test:clean test:build test:wtr",
"test:clean": "rimraf '**/*.spec.js'",
"test:build": "rollup -c rollup.config.test.js",
"test:wtr": "web-test-runner",
"test:watch": "run-p test:watch:*",
"test:watch:build": "rollup -w -c rollup.config.test.js",
"test:watch:wtr": "web-test-runner --watch",
"update-visual-baseline": "run-s \"test:build\" \"test:wtr -- --update-visual-baseline\""
},
"dependencies": {
"lit": "^2.0.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.4.17",
"@koa/cors": "^3.2.0",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "next",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@web/dev-server": "^0.1.28",
"@web/test-runner": "^0.13.27",
"@web/test-runner-commands": "^0.6.1",
"@web/test-runner-playwright": "^0.8.8",
"@web/test-runner-visual-regression": "^0.6.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-lit-a11y": "^2.2.0",
"eslint-plugin-wc": "^1.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"replace": "^1.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.67.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-lit-css": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-pluginutils": "^2.8.2",
"sass": "^1.49.7",
"sinon": "^13.0.1",
"typescript": "^4.5.2",
"wait-on": "^6.0.0"
},
"customElements": "custom-elements.json",
"repository": {
"type": "git",
"url": "git+https://github.com/ulic75/flat-slider.git"
},
"bugs": {
"url": "https://github.com/ulic75/flat-slider/issues"
},
"homepage": "https://ulic75.github.io/flat-slider"
}