-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "tram-deco",
"version": "6.1.1",
"description": "Declarative Custom Elements using native Web Component APIs and specs",
"main": "tram-deco.js",
"files": [
"tram-deco.js",
"tram-deco.min.js",
"scripts/export-component.js"
],
"bin": {
"export-components": "./scripts/export-components.js"
},
"scripts": {
"start": "serve . -p 3000",
"prepublishOnly": "npm run build",
"build": "uglifyjs tram-deco.js -o tram-deco.min.js -c -m",
"test-export": "node scripts/export-components.js example/spoiler-tag.html -o example/spoiler-tag.js",
"pretest": "npm run build && npm run test-export",
"test": "playwright test --ui",
"test:ci": "playwright test"
},
"keywords": [
"web-component",
"html",
"declarative",
"dce",
"custom elements"
],
"author": {
"name": "Jesse Jurman",
"email": "[email protected]",
"url": "https://jrjurman.com"
},
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.46.1",
"@types/node": "^22.5.0",
"cypress": "^13.10.0",
"playwright-webkit": "^1.46.1",
"prettier": "^3.2.4",
"serve": "^14.2.1",
"uglify-js": "^3.17.4"
}
}