-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 2.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@tjmonsi/element-lite",
"version": "0.1.15",
"description": "A take on using lit-html and polymer's properties-mixin",
"browser": "dist/element-lite.umd.js",
"scripts": {
"size": "./node_modules/.bin/size-limit",
"semistandard": "./node_modules/.bin/semistandard",
"test": "npm run semistandard && npm run size",
"build": "./node_modules/.bin/rollup -c",
"pretest": "npm run build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjmonsi/element-lite.git"
},
"keywords": [
"webcomponents"
],
"author": "TJ Monserrat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmonsi/element-lite/issues"
},
"homepage": "https://github.com/tjmonsi/element-lite#readme",
"flat": true,
"size-limit": [
{
"path": "mixins/properties-lite.js",
"limit": "2.5KB"
},
{
"path": "mixins/observers-lite.js",
"limit": "2.5KB"
},
{
"path": "mixins/object-accessors-lite.js",
"limit": "1KB"
},
{
"path": "mixins/object-properties-lite.js",
"limit": "2.5KB"
},
{
"path": "mixins/object-observers-lite.js",
"limit": "2.5KB"
},
{
"path": "mixins/array-accessors-lite.js",
"limit": "1KB"
},
{
"path": "element-lite.js",
"limit": "3.5KB"
},
{
"path": "element.js",
"limit": "6.5KB"
}
],
"semistandard": {
"parser": "babel-eslint",
"ignore": [
"test/*",
"dist/*",
"polyfills/*",
"demo/*"
],
"env": [
"mocha"
]
},
"dependencies": {
"@babel/runtime": "7.6.3",
"@webcomponents/shadycss": "1.9.2",
"@webcomponents/webcomponentsjs": "2.4.0",
"es6-symbol": "3.1.2"
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/plugin-external-helpers": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.6.3",
"@polymer/iron-test-helpers": "3.0.1",
"@polymer/lit-element": "0.7.1",
"babel-eslint": "10.0.3",
"eslint": "6.6.0",
"eslint-config-semistandard": "15.0.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-chai-friendly": "0.4.1",
"eslint-plugin-html": "4.0.6",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-mocha": "5.2.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.0",
"eslint-plugin-standard": "4.0.1",
"i": "0.3.6",
"lit-html": "1.1.2",
"lodash": "^4.17.10",
"mocha": "5.2.0",
"npm": "6.12.0",
"rollup": "1.25.2",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-buble": "0.19.2",
"rollup-plugin-commonjs": "9.1.8",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-terser": "3.0.0",
"semistandard": "12.0.1",
"size-limit": "2.1.6"
}
}