This repository has been archived by the owner on Dec 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
82 lines (82 loc) · 2.49 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
{
"name": "polymer-skeleton",
"version": "1.1.6",
"main": "src/index.js",
"license": "MIT",
"author": "LasaleFamine <[email protected]>",
"repository": "PolymerX/polymer-skeleton",
"contributors": [
"Alessio Occhipinti <[email protected]> (https://godev.space)",
"Mattia Astorino (http://equinsuocha.io/)"
],
"scripts": {
"build": "webpack",
"build:prod": "webpack --env.NODE_ENV=production --optimize-minimize",
"dev": "webpack-dev-server --hot --inline",
"pretest": "yarn build",
"test": "yarn lint && wct --npm && yarn test:lighthouse",
"test:lighthouse": "concurrently --kill-others \"http-server dist\" \"lighthouse --view http://localhost:8080\" ",
"test:travis": "yarn pretest && yarn lint && wct --npm",
"clean:lighthouse": "rm *.report.html",
"posttest": "yarn rmbower",
"lint": "xo && stylelint src/components/**/*.pcss",
"release": "standard-version",
"start": "yarn build && http-server dist"
},
"engines": {
"node": ">= 8.0"
},
"xo": {
"space": true,
"envs": [
"browser"
],
"rules": {
"eol-last": 0,
"import/no-unassigned-import": 0,
"promise/prefer-await-to-then": 0
}
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-syntax-object-rest-spread": "7.2.0",
"@babel/preset-env": "7.3.1",
"autoprefixer": "9.4.7",
"babel-loader": "8.0.5",
"clean-webpack-plugin": "1.0.1",
"concurrently": "4.1.0",
"copy-webpack-plugin": "5.0.0",
"cssnano": "4.1.10",
"ejs-loader": "0.3.1",
"html-webpack-exclude-assets-plugin": "0.0.7",
"html-webpack-plugin": "3.2.0",
"http-server": "0.11.1",
"lighthouse": "4.1.0",
"postcss": "7.0.14",
"postcss-cssnext": "3.1.0",
"postcss-custom-media": "7.0.7",
"postcss-discard-comments": "4.0.1",
"postcss-easy-import": "3.0.0",
"postcss-loader": "3.0.0",
"postcss-mixins": "6.2.1",
"postcss-nesting": "7.0.0",
"postcss-reporter": "6.0.1",
"postcss-selector-not": "4.0.0",
"script-ext-html-webpack-plugin": "2.1.3",
"standard-version": "5.0.0",
"stylelint": "9.10.1",
"stylelint-config-standard": "18.2.0",
"text-loader": "0.0.1",
"wct-browser-legacy": "1.0.2",
"web-component-tester": "6.9.2",
"webpack": "4.29.5",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.1.14",
"workbox-webpack-plugin": "3.6.3",
"xo": "0.24.0"
},
"dependencies": {
"@polymer/polymer": "3.1.0",
"@webcomponents/webcomponentsjs": "2.2.7"
}
}