forked from PolymerX/polymer-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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
{
"name": "polymer-skeleton",
"version": "1.0.0-beta",
"main": "src/index.js",
"license": "MIT",
"author": "LasaleFamine <info@godev.space>",
"repository": "PolymerX/polymer-skeleton",
"contributors": [
"Alessio Occhipinti <info@godev.space> (https://godev.space)",
"Mattia Astorino (http://equinsuocha.io/)"
],
"scripts": {
"build": "NODE_ENV=production webpack --optimize-minimize",
"postbuild": "NODE_ENV=production webpack --config webpack-module-build.config.js",
"dev": "webpack-dev-server --hot --inline",
"dev:module": "BROWSERS=module webpack-dev-server --hot --inline",
"pretest": "yarn linkbower && yarn build",
"test": "yarn lint && wct && yarn test:lighthouse && yarn lint:remark",
"test:lighthouse": "concurrently --kill-others \"http-server dist\" \"lighthouse --view http://localhost:8080\" ",
"test:travis": "yarn pretest && yarn lint && wct",
"clean:lighthouse": "rm *.report.html",
"posttest": "yarn rmbower",
"lint": "xo && stylelint src/components/**/*.postcss",
"lint:remark": "remark .",
"linkbower": "node scripts/link-bower.js",
"rmbower": "node scripts/link-bower.js remove",
"release": "standard-version"
},
"xo": {
"space": true,
"envs": [
"browser"
],
"rules": {
"eol-last": 0,
"import/no-unassigned-import": 0
},
"ignores": [
"test/test-fixture.js"
]
},
"remarkConfig": {
"plugins": [
"preset-github"
]
},
"devDependencies": {
"@polymer/test-fixture": "PolymerX/test-fixture#3.0-preview",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.1",
"chokidar": "1.7.0",
"clean-webpack-plugin": "0.1.17",
"concurrently": "3.5.0",
"copy-webpack-plugin": "4.2.0",
"cssnano": "3.10.0",
"fs-extra": "4.0.2",
"http-server": "0.10.0",
"lighthouse": "2.5.0",
"postcss": "6.0.13",
"postcss-cssnext": "3.0.2",
"postcss-loader": "2.0.8",
"remark-cli": "4.0.0",
"remark-preset-github": "0.0.7",
"standard-version": "4.2.0",
"stylelint": "8.2.0",
"stylelint-config-standard": "17.0.0",
"text-loader": "0.0.1",
"touch": "3.1.0",
"web-component-tester": "6.3.0",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.3",
"workbox-webpack-plugin": "2.1.0",
"xo": "0.18.2"
},
"dependencies": {
"@polymer/polymer": "LasaleFamine/polymer#3.0-preview"
}
}