-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "performance-nodejs",
"description": "get nodejs performance, such as: heap statistics, event loop delay",
"version": "1.1.3",
"author": "Tree Xie <vicansocanbico@gmail.com>",
"keywords": [
"performance",
"heap",
"heap statistics",
"event loop"
],
"scripts": {
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "node ./node_modules/.bin/eslint ./index.js && node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./test/*.js --"
},
"repository": {
"type": "git",
"url": "https://github.com/vicanso/performance-nodejs.git"
},
"engines": {
"node": ">=4.0.0"
},
"readmeFilename": "Readme.md",
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0"
},
"license": "MIT",
"dependencies": {
"camelcase": "^4.1.0"
}
}