-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 896 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 896 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
{
"name": "http-timing",
"description": "generate the http timing(server timing) view",
"version": "2.0.1",
"author": "Tree Xie <vicansocanbico@gmail.com>",
"keywords": [
"timing",
"server timing",
"http timing"
],
"scripts": {
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "node ./node_modules/.bin/eslint ./*.js && node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./test/*.js --"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vicanso/http-timing.git"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
}
}