forked from leafac/caxa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.59 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
{
"name": "caxa",
"version": "1.0.0",
"description": "Package Node.js applications into executable binaries",
"main": "lib/index.js",
"bin": {
"caxa": "lib/index.js"
},
"types": "lib/index.d.ts",
"repository": "leafac/caxa",
"keywords": [
"packing",
"deployment",
"binary"
],
"author": "Leandro Facchinetti <caxa@leafac.com> (https://leafac.com)",
"license": "MIT",
"bugs": "https://github.com/leafac/caxa/issues",
"homepage": "https://github.com/leafac/caxa#readme",
"scripts": {
"test": "prettier --check \"src/**/*\" --end-of-line auto && jest",
"prepare": "tsc",
"stubs": "cd stubs && shx rm -f windows.exe macos linux && cross-env GOOS=windows go build -o windows.exe stub.go && shx echo >> windows.exe && shx echo \"### CAXA ###\" >> windows.exe && cross-env GOOS=darwin go build -o macos stub.go && shx echo >> macos && shx echo \"### CAXA ###\" >> macos && cross-env GOOS=linux go build -o linux stub.go && shx echo >> linux && shx echo \"### CAXA ###\" >> linux"
},
"dependencies": {
"archiver": "^5.2.0",
"commander": "^7.0.0",
"crypto-random-string": "^3.3.0",
"execa": "^4.1.0",
"fs-extra": "^9.1.0"
},
"devDependencies": {
"@types/archiver": "^5.1.0",
"@types/fs-extra": "^9.0.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.26",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"jest": {
"rootDir": "src",
"preset": "ts-jest",
"testEnvironment": "node"
}
}