-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 970 Bytes
/
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
{
"name": "@magnus/send-timings",
"version": "1.0.0",
"description": "Tool to send navigation timing API content to custom endpoint",
"main": "lib/timings.js",
"module": "lib/timings.es6.js",
"scripts": {
"clean": "rimraf lib",
"build": "run-p build:*",
"build:es5": "babel src -d lib",
"build:es6": "cp-cli src/timings.js lib/timings.es6.js ",
"test": "babel-tape-runner specs/*.spec.js",
"prepare": "run-s clean build",
"release": "np"
},
"registry": {
"type": "git",
"url": "https://github.com/callmemagnus/send-timings.git"
},
"author": "Magnus Anderssen <magnus@magooweb.com>",
"keywords": [
"performance",
"timing"
],
"license": "ISC",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-tape-runner": "2.0.1",
"cp-cli": "1.1.0",
"np": "7.2.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"sinon": "9.2.3",
"tape": "5.1.1"
}
}