forked from cabinjs/browser-hrtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
{
"name": "browser-hrtime",
"version": "1.1.8",
"description": "use process.hrtime() in the browser",
"main": "dist/hrtime.js",
"typings": "dist/hrtime.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"size": "size-limit",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest && nyc report --reporter=lcov && npm run size",
"testnew": "jest && nyc merge .nyc_output .nyc_output/out.json && nyc report --reporter=lcov",
"lint": "tslint -p tsconfig.json",
"semantic-release": "semantic-release"
},
"size-limit": [
{
"limit": "1 KB",
"path": "dist/hrtime.js"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/cabinjs/browser-hrtime.git"
},
"keywords": [
"hrtime",
"process",
"perfomance",
"angular",
"node"
],
"author": "Vlad Tansky",
"license": "MIT",
"bugs": {
"url": "https://github.com/cabinjs/browser-hrtime/issues"
},
"homepage": "https://github.com/cabinjs/browser-hrtime#readme",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@size-limit/preset-small-lib": "^4.11.0",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.22",
"coveralls": "^3.1.0",
"dotenv-cli": "^4.0.0",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"jest-puppeteer": "^5.0.3",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"puppeteer": "^9.1.1",
"puppeteer-to-istanbul": "^1.4.0",
"rollup": "^2.49.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.4.3",
"size-limit": "^4.11.0",
"terser": "^5.7.0",
"ts-jest": "^26.5.6",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4"
},
"files": [
"dist"
],
"dependencies": {}
}