-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.59 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.59 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "native-machine-id",
"version": "0.3.11",
"description": "Native retrieval of a unique desktop machine ID without admin privileges or child processes. Faster and more reliable alternative to node-machine-id.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc -p tsconfig.json && node-gyp rebuild && gen-esm-wrapper . ./dist/.esm-wrapper.mjs",
"bootstrap": "npm run compile",
"pretest": "npm run compile",
"install": "node-gyp rebuild",
"prettier": "prettier",
"typecheck": "tsc --noEmit",
"test": "mocha",
"test-cov": "nyc -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test",
"test-ci": "npm run test-cov",
"lint": "eslint . && prettier --check .",
"depcheck": "depcheck",
"check": "npm run typecheck && npm run lint && npm run depcheck",
"prepublishOnly": "npm run compile",
"benchmark": "ts-node scripts/benchmark.ts",
"reformat": "npm run prettier -- --write ."
},
"author": "Compass Team <compass@mongodb.com>",
"gypfile": true,
"dependencies": {
"node-addon-api": "^8.7.0"
},
"license": "Apache-2.0",
"exports": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/.esm-wrapper.mjs"
}
},
"homepage": "https://github.com/mongodb-js/devtools-shared",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/devtools-shared.git"
},
"bugs": "https://jira.mongodb.org/projects/COMPASS/issues",
"bin": {
"native-machine-id": "dist/bin/machine-id.js"
},
"files": [
"binding.cc",
"binding.gyp",
"dist",
"LICENSE"
],
"devDependencies": {
"@mongodb-js/eslint-config-devtools": "^0.11.7",
"@mongodb-js/mocha-config-devtools": "^1.1.2",
"@mongodb-js/prettier-config-devtools": "^1.0.3",
"@mongodb-js/tsconfig-devtools": "^1.1.2",
"@types/mocha": "^9.1.1",
"@types/node": "^22.15.30",
"@types/sinon-chai": "^4.0.0",
"eslint": "^7.25.0 || ^8.0.0",
"gen-esm-wrapper": "^1.1.3",
"mocha": "^8.4.0",
"depcheck": "^1.4.7",
"node-machine-id": "^1.1.12",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"ts-node": "^10.9.2"
},
"keywords": [
"machine id",
"node machine id",
"device identifier",
"node id",
"unique identifier",
"device id",
"machine identifier",
"unique id",
"platform id",
"electron id",
"node-machine-id",
"uuid",
"restrictions",
"native",
"telemetry",
"telemetry id"
]
}