This repository was archived by the owner on Jul 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
{
"name": "terracotta",
"version": "0.3.8",
"description": "Typescript Decorators for Webcomponents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --passWithNoTests",
"build": "webpack",
"dev": "webpack-dev-server",
"docs": "typedoc --out docs src",
"authors": "ngm authors --md --out AUTHORS.md",
"changelog": "ngm changelog --md --out CHANGELOG.md",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/propero-oss/terracotta.git"
},
"keywords": [
"typescript",
"decorator",
"webcomponent",
"component",
"vanilla"
],
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"author": "Propero Team <[email protected]>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/propero-oss/terracotta/issues"
},
"homepage": "https://github.com/propero-oss/terracotta#readme",
"devDependencies": {
"@propero/ngm": "^1.2.1",
"@types/chai": "^4.1.7",
"@types/jest": "^24.0.15",
"chai": "^4.2.0",
"dts-bundle": "^0.7.3",
"jest": "^24.8.0",
"puppeteer": "^1.18.0",
"remove-empty-directories": "0.0.1",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"domdiff": "^2.0.5",
"reflect-metadata": "^0.1.13"
},
"publishConfig": {
"access": "public"
}
}