-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 KB
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
{
"name": "shadowroot-injector",
"version": "2.0.0",
"description": "🪡 Library to declaratively define shadowroots to repeat in HTML templates",
"main": "shadowroot-injector.js",
"files": [
"shadowroot-injector.js",
"shadowroot-injector.min.js"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "uglifyjs shadowroot-injector.js -o shadowroot-injector.min.js -c -m",
"pretest": "npm run build",
"test": "playwright test --ui",
"test:ci": "npm run pretest && playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tram-One/shadowroot-injector.git"
},
"keywords": [],
"author": {
"name": "Jesse Jurman",
"email": "j.r.jurman@gmail.com",
"url": "https://jrjurman.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Tram-One/shadowroot-injector/issues"
},
"homepage": "https://github.com/Tram-One/shadowroot-injector#readme",
"devDependencies": {
"@playwright/test": "^1.53.1",
"playwright-webkit": "^1.53.1",
"prettier": "^3.6.2",
"serve": "^14.2.4",
"uglify-js": "^3.19.3"
}
}