forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
{
"name": "@tooling/v8-snapshot",
"version": "0.0.0-development",
"description": "Various utils related to create v8 snapshots for electron apps.",
"private": true,
"main": "dist/v8-snapshot.js",
"scripts": {
"build": "tsc && (rimraf ./dist/blueprint && cpr ./src/blueprint ./dist/blueprint)",
"check-ts": "tsc --noEmit",
"clean": "rimraf dist",
"clean-deps": "rimraf node_modules",
"test": "yarn test-unit",
"test-integration": "mocha test/integration/**/*.spec.ts --config ./test/.mocharc.js",
"test-unit": "mocha test/unit/**/*.spec.ts --config ./test/.mocharc.js",
"watch": "tsc --watch"
},
"dependencies": {
"@tooling/electron-mksnapshot": "0.0.0-development",
"@tooling/packherd": "0.0.0-development",
"ansi-colors": "^4.1.1",
"convert-source-map": "^1.8.0",
"debug": "^4.3.4",
"resolve-from": "^5.0.0",
"source-map-js": "^0.6.2",
"temp-dir": "^2.0.0",
"terser": "5.14.2",
"tslib": "^2.0.1",
"worker-nodes": "^2.3.0"
},
"devDependencies": {
"@tooling/system-tests": "0.0.0-development",
"cpr": "^3.0.1",
"mocha": "7.0.1",
"snap-shot-it": "7.9.3",
"stealthy-require": "^1.1.1"
},
"files": [
"dist",
"src/v8-snapshot.ts"
],
"types": "src/v8-snapshot.ts",
"optionalDependencies": {
"@cypress/snapbuild-android-arm64": "1.0.2",
"@cypress/snapbuild-darwin-64": "1.0.2",
"@cypress/snapbuild-darwin-arm64": "1.0.2",
"@cypress/snapbuild-freebsd-64": "1.0.2",
"@cypress/snapbuild-freebsd-arm64": "1.0.2",
"@cypress/snapbuild-linux-32": "1.0.2",
"@cypress/snapbuild-linux-64": "1.0.2",
"@cypress/snapbuild-linux-arm": "1.0.2",
"@cypress/snapbuild-linux-arm64": "1.0.2",
"@cypress/snapbuild-linux-mips64le": "1.0.2",
"@cypress/snapbuild-linux-ppc64le": "1.0.2",
"@cypress/snapbuild-windows-32": "1.0.2",
"@cypress/snapbuild-windows-64": "1.0.2"
},
"nx": {
"implicitDependencies": [
"@packages/graphql",
"@packages/data-context"
]
}
}