-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "lite-html",
"version": "0.2.4",
"description": "A re-implementation of lit-html",
"main": "lite-html.js",
"module": "lite-html.js",
"jsnext:main": "lite-html.js",
"files": [
"lite-html.*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ruphin/lite-html.git"
},
"author": "Goffert van Gool <[email protected]>",
"keywords": [
"web-components",
"webcomponents",
"html"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/ruphin/lite-html/issues"
},
"scripts": {
"build": "rollup -c",
"dev": "browser-sync start --config browsersync.conf.js",
"release": "npm run build && np",
"test": "karma start",
"guard": "karma start --no-single-run"
},
"homepage": "https://github.com/ruphin/lite-html",
"devDependencies": {
"@webcomponents/template": "^1.3.1",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.24.6",
"chai": "^4.1.2",
"karma": "^2.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"lodash": "3.10.1",
"mocha": "^5.2.0",
"np": "^2.20.1",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-terser": "^1.0.1"
}
}