-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "tram-lite",
"version": "5.3.0",
"description": "💡 HTML library for building and enhancing web-components",
"homepage": "https://tram-one.io/tram-lite/",
"repository": "https://github.com/Tram-One/tram-lite",
"main": "output/tram-lite.js",
"types": "output/tram-lite.js",
"files": [
"output"
],
"bin": {
"export-components": "./output/export-components.js"
},
"scripts": {
"prestart": "npm run build",
"start": "serve . -p 3000",
"build": "node build.js",
"prepublishOnly": "npm run build",
"build-test-components": "bash ./examples/components/build-test-components.sh",
"pretest": "npm run build && npm run build-test-components",
"test": "cypress open",
"docs": "serve ./docs -p 4000"
},
"author": {
"name": "Jesse Jurman",
"email": "[email protected]",
"url": "https://jrjurman.com"
},
"keywords": [
"frontend",
"framework",
"library",
"client",
"browser",
"web-app",
"tram-one",
"tram-lite",
"vanilla",
"tram",
"one",
"lite",
"web-components",
"html-first",
"html"
],
"license": "MIT",
"devDependencies": {
"cypress": "^12.14.0",
"html-import-element": "^1.1.0",
"prettier": "^3.0.3",
"serve": "^14.2.0",
"uglify-js": "^3.17.4"
}
}