-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "jxec",
"version": "0.0.4",
"main": "dist/index.js",
"license": "MIT",
"description": "A promise supported spawn wrapper.",
"homepage": "https://github.com/node-jeneralize/jxec",
"private": false,
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"author": {
"name": "sigma"
},
"repository": {
"type": "git",
"url": "https://github.com/node-jeneralize/jxec"
},
"scripts": {
"genDeclaration": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"build": "yarn genDeclaration && esbuild --minify --bundle --outdir=dist --platform=node src/index.ts",
"prepare": "yarn build",
"test": "jest",
"lint": "eslint --ext .ts . && prettier .",
"lint:fix": "eslint --fix --ext .ts . && prettier --write ."
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"esbuild": "^0.14.47",
"esbuild-jest": "^0.5.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"typescript": "*"
}
}