-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
74 lines (74 loc) · 1.65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@canva/js2nix",
"version": "1.1.0",
"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",
"overlay.nix",
"js2nix.nix",
"yarn.lock.nix"
],
"js2nix": {
"// 1": [
"The reason to disable import check for the '@jest/globals' is becasue it throws an error when imported",
"directly, see https://github.com/facebook/jest/blob/v27.0.3/packages/jest-globals/src/index.ts#L29-L31"
],
"// 2": [
"The reason to disable import check for the 'fsevents' is becasue it is ont macOS specific package",
"and doesn't exist on Linux"
],
"overlay": {
"@jest/globals": {
"doCheck": false
},
"fsevents": {
"doCheck": false
},
"babel-jest": {
"addDependencies": [
"@babel/core"
]
}
}
},
"optionalDependencies": {
"node-gyp": "^9.1.0"
}
}