-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 969 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 969 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
30
31
32
33
34
35
36
37
38
39
{
"name": "painty",
"version": "0.3.3",
"description": "a First Meaningful Paint metric collector using Mutation Observer",
"main": "index.js",
"scripts": {
"test": "mocha tests --recursive",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debug-tips/painty.git"
},
"keywords": [
"first-meaningful-paint",
"fmp",
"amp",
"performance"
],
"author": "jasonslyvia",
"license": "MIT",
"bugs": {
"url": "https://github.com/debug-tips/painty/issues"
},
"homepage": "https://github.com/debug-tips/painty#readme",
"dependencies": {
"timing2": "^0.3.2"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"puppeteer": "^1.9.0",
"rollup": "^0.65.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0"
}
}