forked from lit/lit-element
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 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": "@polymer/lit-element",
"version": "0.1.0",
"description": "Polymer based lit-html custom element",
"license": "BSD-3-Clause",
"repository": "PolymerLabs/lit-element",
"main": "lit-element.js",
"module": "lit-element.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"gen-docs": "typedoc --readme none --mode modules --excludeNotExported --excludePrivate --exclude **/*_test.ts --out ./docs/api .",
"pretest": "npm run posttest; ln -s node_modules bower_components",
"test": "npm run build && wct -l chrome && npm run lint",
"posttest": "rm -f bower_components",
"checksize": "uglifyjs lit-element.js -mc --toplevel | gzip -9 | wc -c",
"format": "find src test | grep '\\.js$\\|\\.ts$' | xargs clang-format --style=file -i",
"lint": "tslint --project ./"
},
"author": "The Polymer Authors",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^4.0.2",
"mocha": "^3.4.2",
"tslint": "^5.7.0",
"typedoc": "^0.8.0",
"typescript": "^2.6.2",
"uglify-es": "^3.0.27",
"wct-browser-legacy": "0.0.1-pre.10",
"web-component-tester": "^6.0.1"
},
"typings": "lit-element.d.ts",
"dependencies": {
"@polymer/polymer": "^3.0.0-pre.4",
"lit-html": "^0.8.0"
},
"publishConfig": {
"access": "public"
}
}