This repository has been archived by the owner on Feb 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.54 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
{
"name": "lit-html",
"version": "0.9.0",
"description": "HTML template literals in JavaScript",
"license": "BSD-3-Clause",
"repository": "Polymer/lit-html",
"main": "lit-html.umd.js",
"module": "lit-html.js",
"directories": {
"test": "test"
},
"files": [
"/lit-html.js",
"/lit-html.js.map",
"/lit-html.d.ts",
"/lib/",
"/src/",
"!/src/test/"
],
"scripts": {
"build": "tsc && babel -o lit-html.umd.js lit-html.js",
"gen-docs": "typedoc --readme none --mode modules --excludeNotExported --excludePrivate --exclude **/*_test.ts --out ./docs/api ./src",
"test": "npm run build && wct --npm && npm run lint",
"quicktest": "wct -l chrome -p --npm",
"checksize": "uglifyjs lit-html.js -mc --toplevel | gzip -9 | wc -c",
"format": "find src test | grep '\\.js$\\|\\.ts$' | xargs clang-format --style=file -i",
"lint": "tslint --project ./",
"prepare": "npm run build"
},
"author": "The Polymer Authors",
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/mocha": "^2.2.46",
"@webcomponents/shadycss": "^1.1.0",
"@webcomponents/shadydom": "^1.0.11",
"@webcomponents/template": "^1.2.2",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^3.5.3",
"tslint": "^5.9.1",
"typedoc": "^0.9.0",
"typescript": "^2.6.2",
"uglify-es": "^3.3.5",
"wct-browser-legacy": "0.0.1-pre.11",
"web-component-tester": "^6.4.3"
},
"typings": "lit-html.d.ts",
"dependencies": {}
}