-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 767 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 767 Bytes
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
{
"name": "webpagespeed",
"version": "1.0.0",
"description": "Demo Project for webpage speed!",
"main": "index.js",
"scripts": {
"start": "http-server ./src/measure/ -p 8080 -o /index.html",
"pretty": "prettier **/*.js --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BillDinger/WebPageSpeed.git"
},
"author": "Bill Dinger",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/BillDinger/WebPageSpeed/issues"
},
"homepage": "https://github.com/BillDinger/WebPageSpeed#readme",
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-google": "^0.13.0",
"http-server": "^0.12.3",
"prettier": "1.18.2"
},
"dependencies": {
"xmlhttprequest": "^1.8.0"
}
}