-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.03 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
73
74
75
76
{
"name": "latency-monitor",
"version": "0.2.1",
"description": "A generic latency monitor for node/browers",
"main": "index.js",
"files": [
"dist",
"docs",
"index.js",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mlucool/latency-monitor.git"
},
"bugs": {
"url": "https://github.com/mlucool/latency-monitor/issues"
},
"homepage": "https://github.com/mlucool/latency-monitor#readme",
"scripts": {
"build": "npm run build-src && npm run build-web && npm run build-doc",
"build-src": "babel -d dist src",
"build-web": "webpack",
"build-doc": "jsdoc -c jsdocConfig.json -P package.json -R README.md src/",
"lint": "eslint src/**/*.js *.js test/**/*.js",
"test": "nyc mocha -r @babel/register test/**/*_spec.js",
"preversion": "echo \"Another version! Keep up the good work!\"",
"version": "",
"postversion": "git push && git push --tags",
"prepublish": "npm run build",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"javascript",
"latency",
"monitor",
"eventloop",
"event loop"
],
"author": {
"name": "Marc Udoff",
"email": "[email protected]"
},
"pre-commit": [
"lint",
"test"
],
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.3.1",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"jsdoc": "^3.6.6",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
}
}