-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.21 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
57
{
"name": "eask2nix",
"version": "0.1.2",
"description": "Convert Eask into Nix expressions",
"main": "emacs2nix",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-all": "pkg package.json",
"build-linux-x64": "pkg package.json -t node16-linux-x64",
"build-macos-x64": "pkg package.json -t node16-macos-x64",
"build-windows-x64": "pkg package.json -t node16-win-x64"
},
"bin": {
"eask2nix": "./eask2nix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nix-community/eask2nix.git"
},
"keywords": [
"nix",
"emacs",
"eask",
"cli"
],
"author": "Jen-Chieh Shen",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/nix-community/eask2nix/issues"
},
"homepage": "https://github.com/nix-community/eask2nix#readme",
"dependencies": {
"which": "^2.0.2",
"yargs": "^17.5.1"
},
"files": [
"cmds",
"src",
"lisp",
"templates"
],
"publishConfig": {
"access": "public"
},
"pkg": {
"scripts": [
"cmds/**/*.js",
"src/**/*.js"
],
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
],
"outputPath": "dist"
}
}