forked from canva-public/js2nix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.02 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
{
"name": "@canva/js2nix",
"version": "1.0.0",
"main": "bin/js2nix",
"license": "MIT",
"bin": {
"js2nix": "./bin/js2nix"
},
"scripts": {
"test": "jest test"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"chalk": "^4.1.2",
"duration": "^0.2.2",
"optimist": "^0.6.1",
"parse-package-name": "^0.1.0",
"promisify-child-process": "^4.1.1",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@jest/types": "^27.2.5",
"@types/jest": "^26.0.23",
"@types/node": "^16.6.0",
"@types/optimist": "^0.0.30",
"@types/which": "^2.0.1",
"@types/yarnpkg__lockfile": "^1.1.5",
"jest": "^27.0.3"
},
"peerDependencies": {
"@babel/core": "*"
},
"files": [
"bin",
"bin/js2nix",
"lib",
"lib/print.js",
"lib/proxy.js",
"lib/install.js",
"package.json",
"default.nix",
"lib.nix",
"js2nix.nix",
"yarn.lock.nix"
],
"optionalDependencies": {
"node-gyp": "^9.1.0"
}
}