-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.04 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.04 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
{
"name": "boxednode",
"version": "3.0.0",
"description": "Create a shippable binary from a JS file",
"main": "lib/index.js",
"exports": {
"require": "./lib/index.js",
"import": "./.esm-wrapper.mjs"
},
"bin": {
"boxednode": "bin/boxednode.js"
},
"engines": {
"node": ">= 20.19.5"
},
"scripts": {
"lint": "eslint **/*.ts bin/*.js",
"test": "npm run lint && npm run build && npm run test-ci",
"test-ci": "nyc mocha --colors -r ts-node/register test/*.ts",
"build": "npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs",
"prepack": "npm run build",
"compile-ts": "tsc -p tsconfig.json",
"update-gha-workflow": "./scripts/update-gha-workflow.sh"
},
"keywords": [
"node.js",
"binary",
"packaging",
"shipping"
],
"author": "Anna Henningsen <anna@addaleax.net>",
"homepage": "https://github.com/mongodb-js/boxednode",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/boxednode.git"
},
"bugs": {
"url": "https://github.com/mongodb-js/boxednode/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"actual-crash": "1.0.3",
"eslint": "^7.9.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gen-esm-wrapper": "^1.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.8.1",
"typescript": "^4.0.3",
"weak-napi": "node-ffi-napi/weak-napi#5449c78739d69aa286e43c7baf9819440b4544bb"
},
"dependencies": {
"@pkgjs/nv": "^0.2.1",
"chalk": "^4.1.0",
"cli-progress": "^3.8.2",
"gyp-parser": "^1.0.4",
"node-fetch": "^2.6.1",
"node-gyp": "^11.5.0",
"pkg-up": "^3.1.0",
"rimraf": "^6.1.0",
"tar": "^6.0.5",
"yargs": "^16.0.3"
}
}