-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.21 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
64
65
66
{
"name": "lit-loader-example",
"version": "0.0.0",
"description": "Example repository to show how the lit-loader works",
"license": "MIT",
"repository": "PolymerX/lit-loader-example",
"bugs": {
"url": "https://github.com/PolymerX/lit-loader-example/issues",
"email": "info@godev.space"
},
"homepage": "https://github.com/PolymerX/lit-loader-example",
"author": {
"name": "LasaleFamine",
"email": "info@godev.space",
"url": "godev.space"
},
"main": "src/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"start": "http-server dist",
"build": "webpack",
"test": "xo && ava"
},
"files": [
"src"
],
"keywords": [
""
],
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/preset-env": "7.3.0",
"babel-loader": "7.1.5",
"html-webpack-plugin": "3.2.0",
"lit-element": "2.0.0-rc.3",
"lit-loader": "0.1.0",
"postcss-easy-import": "3.0.0",
"webpack": "4.16.1",
"webpack-cli": "3.0.8",
"xo": "0.21.1"
},
"xo": {
"envs": [
"browser",
"node"
],
"extensions": [
".lit"
],
"rules": {
"max-len": [
"error",
{
"code": 80,
"ignoreUrls": true
}
],
"capitalized-comments": "off"
}
},
"dependencies": {
"http-server": "0.11.1"
}
}