-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "ctrlc-windows",
"version": "2.2.0",
"description": "Send CTRL-C to a process on Windows",
"repository": {
"type": "git",
"url": "https://github.com/thefrontside/ctrlc-windows.git"
},
"files": [
"dist",
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"napi": {
"name": "ctrlc-windows",
"triples": {
"defaults": false,
"additional": [
"aarch64-pc-windows-msvc",
"x86_64-pc-windows-msvc"
]
}
},
"author": "Frontside Engineering <[email protected]>",
"license": "MIT",
"scripts": {
"build": "node ./scripts/build.js --release",
"test": "mocha -r ts-node/register \"test/**/*.test.ts\"",
"build:debug": "node ./scripts/build.js",
"format": "run-p format:prettier format:rs",
"format:prettier": "prettier . -w",
"format:rs": "cargo fmt",
"lint": "eslint . -c ./.eslintrc.yml"
},
"devDependencies": {
"@changesets/cli": "2.24.3",
"@frontside/tsconfig": "^1.1.0",
"@napi-rs/cli": "^2.11.4",
"@types/mocha": "^9.1.1",
"@types/node": "^14.14.6",
"expect": "^28.1.3",
"mkdirp": "^1.0.4",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"yargs": "^17.7.2"
},
"volta": {
"node": "14.20.0",
"yarn": "1.22.19"
}
}