-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "notare-monitor",
"version": "2.2.0",
"description": "Node.js Performance Observer - Monitor module",
"keywords": [
"performance",
"observe"
],
"author": "James M Snell <[email protected]>",
"license": "MIT",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
"import": "./dist/esm-wrapper.mjs",
"require": "./dist/src/index.js"
},
"scripts": {
"build": "tsc && gen-esm-wrapper . dist/esm-wrapper.mjs",
"lint": "standardx \"**/*.{ts,mjs,js,cjs}\" | snazzy",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasnell/notare-monitor"
},
"devDependencies": {
"@types/blessed": "^0.1.17",
"@types/debug": "^4.1.5",
"@types/node": "^14.14.9",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"gen-esm-wrapper": "^1.1.1",
"snazzy": "^9.0.0",
"standardx": "^7.0.0",
"typescript": "^4.1.2"
},
"eslintConfig": {
"rules": {
"semi": [
"error",
"always"
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
},
"globals": {
"SharedArrayBuffer": true,
"Atomics": true
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"dependencies": {
"debug": "^4.3.1",
"native-hdr-histogram": "^1.0.0"
}
}