-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.99 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
80
81
82
83
84
85
{
"name": "stampino-element",
"version": "0.2.0",
"type": "module",
"main": "./stampino-element.js",
"exports": {
".": {
"types": "./stampino-element.d.ts",
"default": "./stampino-element.js"
}
},
"files": [
"stampino-element.{d.ts,d.ts.map,js,js.map}",
"stampino-base-element.{d.ts,d.ts.map,js,js.map}",
"src/*",
"!src/demo/*",
"!src/test/*"
],
"dependencies": {
"lit": "^3.1.2",
"stampino": "^0.8.2"
},
"scripts": {
"build": "wireit",
"test": "wireit",
"format": "prettier \"src/**/*.ts\" --write",
"demo": "wireit"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@types/mocha": "^10.0.6",
"@web/dev-server": "^0.4.3",
"@web/test-runner": "^0.18.1",
"@web/test-runner-mocha": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"wireit": "^0.14.4"
},
"author": "Justin Fagnani <[email protected]>",
"license": "MIT",
"repository": "justinfagnani/stampino-element",
"bugs": {
"url": "https://github.com/justinfagnani/stampino-element/issues"
},
"homepage": "https://github.com/justinfagnani/stampino-element#readme",
"wireit": {
"build": {
"command": "tsc --pretty",
"files": [
"src/**/*.ts",
"tsconfig.json"
],
"output": [
"stampino-element.{d.ts,d.ts.map,js,js.map}",
"stampino-base-element.{d.ts,d.ts.map,js,js.map}",
"test"
],
"clean": "if-file-deleted"
},
"demo": {
"command": "wds",
"service": true,
"dependencies": [
{
"script": "build",
"cascade": false
}
],
"files": [
"web-dev-server.config.js"
]
},
"test": {
"command": "wtr test/**/*_test.js --node-resolve --playwright --browsers chromium",
"dependencies": [
"build"
],
"files": [
"web-test-runner.config.js"
],
"output": []
}
}
}