-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "lit-html-element",
"version": "0.9.1",
"description": "A base class for creating web components using lit-html",
"main": "lit-element.js",
"module": "lit-element.js",
"files": [
"lit-element.js",
"/src/",
"/lib/",
"!/docs"
],
"directories": {
"test": "tests"
},
"scripts": {
"build": "gulp compile",
"lint": "tslint --project ./",
"test": "npm run build && wct --npm && npm run lint",
"checksize": "uglifyjs lit-element.js -mc --toplevel | gzip -9 | wc -c"
},
"author": "Kenneth Rohde Christiansen <[email protected]>",
"homepage": "https://github.com/kenchris/lit-element",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/kenchris/lit-element.git"
},
"dependencies": {
"lit-html": "^0.8.0",
"reflect-metadata": "github:rbuckton/reflect-metadata"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-replace-path": "^0.4.0",
"gulp-tsc": "^1.3.2",
"tslint": "^5.9.1",
"typescript": "^2.6.2",
"uglify-es": "^3.3.5",
"@types/chai": "^4.1.0",
"@types/mocha": "^2.2.46",
"chai": "^4.1.2",
"mocha": "^3.5.3",
"wct-browser-legacy": "0.0.1-pre.11",
"web-component-tester": "^6.4.3",
"reflect-metadata": "^0.1.10"
}
}