-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
40
41
42
43
{
"name": "brick-element",
"version": "0.3.1",
"sideEffects": false,
"description": "Custom element generator using tagged literals",
"main": "brick-element.js",
"types": "src/brick-element.ts",
"module": "brick-element.js",
"directories": {
"test": "test"
},
"files": [
"brick-element.js",
"src/brick-element.ts"
],
"scripts": {
"test": "tsc; firefox --new-tab http://127.0.0.1:8081/test/ ; http-server -p 8081 ",
"build": "tsc",
"watch": "tsc -t es2018 --outDir ./ -w src/brick-element.ts "
},
"repository": "brick-element",
"keywords": [
"web-components",
"webcomponents",
"generator",
"literals"
],
"author": "panmanfredini",
"license": "MIT",
"bugs": {
"url": "https://github.com/WebComponentHelpers/Brick/issues"
},
"homepage": "https://github.com/WebComponentHelpers/Brick#readme",
"devDependencies": {
"chai": "^4.2.0",
"http-server": "^0.12.3",
"mocha": "^8.1.0",
"ts-loader": "^5.4.5",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}