-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "phlex",
"version": "0.0.1",
"author": "Joel Drapper",
"license": "MIT",
"type": "module",
"description": "Better iframes",
"main": "dist/phlex.min.js",
"types": "dist/phlex.d.ts",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/joeldrapper"
},
"scripts": {
"test": "web-test-runner test/**/*.test.js --node-resolve",
"build": "tsc && prettier --write ./src ./dist",
"watch": "tsc -w",
"test:watch": "npm run test -- --watch",
"lint": "prettier --check ./src ./dist ./test",
"minify": "terser dist/phlex.js -o dist/phlex.min.js -c -m --module",
"prepare": "npm run build && npm run minify",
"ship": "npm run prepare && npm run test && npm run lint && npm publish",
"format": "prettier --write ./src ./dist ./test",
"size": "npm run prepare && gzip-size ./dist/phlex.min.js --raw --include-original"
},
"devDependencies": {
"@open-wc/testing": "^3.0.0-next.5",
"@web/test-runner": "^0.18.0",
"gzip-size-cli": "^5.1.0",
"prettier": "^3.2.5",
"terser": "^5.28.1",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.2"
},
"dependencies": {
"morphlex": "^0.0.6"
}
}