-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "minpty",
"description": "Run a command in a pseudo terminal",
"version": "0.0.1",
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/chrmarti/minpty.git"
},
"bugs": {
"url": "https://github.com/chrmarti/minpty/issues"
},
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"node": ">=14.14.0"
},
"main": "dist/main.js",
"scripts": {
"ci": "npm-run-all package test",
"test": "mocha --exit dist/test.js",
"compile": "npm-run-all tsc-b cargo-build",
"tsc-b": "tsc -b",
"cargo-build": "cargo-cp-artifact -nc dist/lib.node -- cargo build --message-format=json-render-diagnostics --release",
"watch": "npm-run-all tsc-b-w",
"tsc-b-w": "tsc -b -w",
"package": "npm-run-all compile npm-pack",
"npm-pack": "npm pack",
"clean": "rimraf dist target"
},
"files": [
"LICENSE.txt",
"dist/main.js",
"dist/lib.node",
"package.json"
],
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.7",
"cargo-cp-artifact": "^0.1",
"mocha": "^9.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
}
}