forked from leafac/caxa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.9 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
55
56
{
"name": "@casamagalhaes/caxa",
"version": "2.1.0",
"description": "Package Node.js applications into executable binaries",
"main": "distribution/index.js",
"bin": {
"caxa": "distribution/index.js"
},
"types": "distribution/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/casamagalhaes/caxa.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"packing",
"deployment",
"binary"
],
"author": "Leandro Facchinetti <caxa@leafac.com> (https://leafac.com)",
"license": "MIT",
"scripts": {
"test": "prettier --check \"source/**/*\" --end-of-line auto && jest",
"prepare": "tsc",
"build:stubs": "shx rm -f stubs/stub--win32--x64 && cross-env CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o stubs/stub--win32--x64 stubs/stub.go && shx echo >> stubs/stub--win32--x64 && shx echo CAXACAXACAXA >> stubs/stub--win32--x64 && shx rm -f stubs/stub--win32--ia32 && cross-env CGO_ENABLED=0 GOOS=windows GOARCH=386 go build -o stubs/stub--win32--ia32 stubs/stub.go && shx echo >> stubs/stub--win32--ia32 && shx echo CAXACAXACAXA >> stubs/stub--win32--ia32 && shx rm -f stubs/stub--darwin--x64 && cross-env CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o stubs/stub--darwin--x64 stubs/stub.go && shx echo >> stubs/stub--darwin--x64 && shx echo CAXACAXACAXA >> stubs/stub--darwin--x64 && shx rm -f stubs/stub--darwin--arm64 && cross-env CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o stubs/stub--darwin--arm64 stubs/stub.go && shx echo >> stubs/stub--darwin--arm64 && shx echo CAXACAXACAXA >> stubs/stub--darwin--arm64 && shx rm -f stubs/stub--linux--x64 && cross-env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o stubs/stub--linux--x64 stubs/stub.go && shx echo >> stubs/stub--linux--x64 && shx echo CAXACAXACAXA >> stubs/stub--linux--x64 && shx rm -f stubs/stub--linux--arm64 && cross-env CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o stubs/stub--linux--arm64 stubs/stub.go && shx echo >> stubs/stub--linux--arm64 && shx echo CAXACAXACAXA >> stubs/stub--linux--arm64 && shx rm -f stubs/stub--linux--arm && cross-env CGO_ENABLED=0 GOOS=linux GOARCH=arm go build -o stubs/stub--linux--arm stubs/stub.go && shx echo >> stubs/stub--linux--arm && shx echo CAXACAXACAXA >> stubs/stub--linux--arm"
},
"dependencies": {
"archiver": "^5.2.0",
"commander": "^7.0.0",
"crypto-random-string": "^3.3.0",
"dedent": "^0.7.0",
"execa": "^4.1.0",
"fs-extra": "^9.1.0",
"globby": "^11.0.3"
},
"devDependencies": {
"@types/archiver": "^5.1.0",
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^9.0.7",
"@types/jest": "^27.0.1",
"@types/node": "^14.14.26",
"cross-env": "^7.0.3",
"jest": "^27.1.0",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"ts-jest": "^27.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"jest": {
"preset": "ts-jest",
"rootDir": "source"
}
}