-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "npm-spawner",
"version": "1.0.7-e",
"description": "This async TS/JS code is to programmatically execute/fork external/shell commands and npm/yarn scripts from Node.",
"license": "MIT",
"type": "module",
"export": {
"import": "./index.js",
"require": "./cjs/index.js",
"default": "./index.js"
},
"files": [
"index.*",
"lib/**/*",
"cjs/**/*"
],
"scripts": {
"build:esm": "tsc --build",
"%build:esm": "tsc --build && mv lib/index.* ./ && awk...",
"build:cjs:d": "tsc --emitDeclarationOnly --outFile ./cjs/index.js --esModuleInterop --module commonjs",
"build:cjs": "esbuild ./src/index.ts --bundle --outfile=./cjs/index.js --platform=node && npm run build:cjs:d",
"build": "npm run build:esm && npm run build:cjs",
"publish:npm": "npm publish --access public",
"publish:local": "yalc push --replace"
},
"devDependencies": {
"@types/node": "latest",
"esbuild": "latest",
"typescript": "next"
},
"keywords": [
"spawn",
"ChildProcess",
"node",
"npm",
"api",
"run",
"yarn"
],
"author": {
"name": "timur x",
"url": "https://github.com/timurxyz",
"twitter": "https://twitter.com/timurxyz"
},
"bugs": {
"url": "https://github.com/timurxyz/npm-spawner/issues"
}
}