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 5
/
package.json
129 lines (129 loc) · 3.11 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "polymerx-cli",
"version": "0.4.2",
"description": "Unlock the power of Polymer 3, Web Components and modern web tools.",
"license": "MIT",
"repository": "PolymerX/polymerx-cli",
"bugs": {
"url": "https://github.com/PolymerX/polymerx-cli/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/PolymerX/polymerx-cli",
"author": {
"name": "LasaleFamine",
"email": "[email protected]",
"url": "https://github.com/PolymerX"
},
"main": "dist/cli.js",
"bin": {
"polymerx": "dist/cli.js"
},
"engines": {
"node": ">=8.0 && <9 || >=10.0.0"
},
"scripts": {
"dev": "babel-node src/cli.js",
"prebuild": "rimraf dist",
"build": "babel src/ -d dist",
"prepublish": "yarn build",
"release": "git pull && standard-version",
"pretest": "yarn build && rimraf test/output",
"test": "xo && nyc ava --serial",
"posttest": "rimraf test/output",
"pretest:travis": "yarn pretest",
"test:travis": "yarn test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"files": [
"dist"
],
"keywords": [
"polymer-cli",
"cli",
"polymerx-cli",
"polymerx",
"polymer3",
"polymer",
"webpack3-polymer",
"polymer-webpack",
"polymer-postcss",
"polymer-service-workers",
"workbox",
"polymer-workbox"
],
"dependencies": {
"@babel/core": "7.6.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-object-rest-spread": "7.2.0",
"@babel/preset-env": "7.6.2",
"@babel/register": "7.6.2",
"babel-loader": "8.0.6",
"chalk": "2.4.2",
"clean-webpack-plugin": "1.0.0",
"cli-table": "0.3.1",
"console-clear": "1.1.1",
"copy-webpack-plugin": "5.0.3",
"devcert-san": "0.3.3",
"ejs-loader": "0.3.5",
"execa": "1.0.0",
"find-node-modules": "2.0.0",
"get-port": "5.0.0",
"git-user-local": "0.2.0",
"gittar": "0.1.1",
"html-webpack-exclude-assets-plugin": "0.0.7",
"html-webpack-plugin": "3.2.0",
"inquirer": "6.2.2",
"ora": "3.4.0",
"phunctional": "0.2.1",
"pify": "4.0.1",
"postcss-loader": "3.0.0",
"raw-loader": "1.0.0",
"replace-in-file": "3.4.2",
"script-ext-html-webpack-plugin": "2.1.4",
"update-notifier": "2.5.0",
"validate-npm-package-name": "3.0.0",
"webpack": "4.41.0",
"webpack-dev-server": "3.8.2",
"webpack-merge": "4.2.2",
"which": "1.3.1",
"workbox-webpack-plugin": "3.6.3",
"yargs": "13.2.2"
},
"devDependencies": {
"@babel/cli": "7.6.2",
"ava": "2.4.0",
"codecov": "3.6.1",
"glob": "7.1.4",
"ncp": "2.0.0",
"nyc": "14.1.1",
"puppeteer": "1.20.0",
"rimraf": "3.0.0",
"standard-version": "7.0.0",
"uuid": "3.3.3",
"xo": "0.25.3"
},
"ava": {
"files": [
"test/**/*.test.js"
]
},
"xo": {
"space": true,
"rules": {
"require-atomic-updates": 0,
"max-len": [
"error",
{
"code": 110,
"ignoreUrls": true
}
],
"capitalized-comments": "off"
}
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}