-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.77 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "abstract-element",
"version": "4.8.0",
"description": "The abstract class for creating web components",
"main": "./index.js",
"module": "./index.js",
"private": true,
"scripts": {
"build": "npm run transpile && node ./scripts/.make-lib",
"transpile": "rimraf ./lib && tsc -p ./tsconfig/tsconfig.esm.json && tsc -p ./tsconfig/tsconfig.cjs.json",
"dev": "npm run transpile && concurrently --raw \"tsc -w -p ./tsconfig/tsconfig.esm.json\" \"webpack-dev-server --config ./demo/webpack.config.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"pub": "npm publish ./lib",
"pub:beta": "npm publish ./lib --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inscriptum/abstract-element.git"
},
"keywords": [
"abstract",
"web",
"component"
],
"author": "Den Sumbaev @sumbad",
"contributors": [
{
"name": "Den Sumbaev @sumbad"
},
{
"name": "Aleksey Zikrackiy @mralexrabota"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/inscriptum/abstract-element/issues"
},
"homepage": "https://github.com/inscriptum/abstract-element#readme",
"peerDependencies": {
"hyperhtml": "2.x",
"lit-html": "1.x"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.3.0",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^11.0.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.6",
"hyperhtml": "^2.31.6",
"immer": "^9.0.6",
"lit-html": "^1.1.2",
"rimraf": "^2.6.3",
"terser": "^4.8.1",
"ts-loader": "^9.4.2",
"typescript": "^3.7.5",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}