-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathpackage.json
34 lines (34 loc) · 912 Bytes
/
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
{
"name": "@tooling/electron-mksnapshot",
"version": "0.0.0-development",
"description": "Configurable electron version of the mksnapshot binary",
"private": true,
"main": "dist/mksnapshot.js",
"scripts": {
"build": "tsc",
"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": {
"@electron/get": "^2.0.2",
"debug": "^4.3.4",
"extract-zip": "^2.0.1",
"fs-extra": "^10.0.0",
"temp-dir": "^2.0.0"
},
"devDependencies": {
"@packages/ts": "0.0.0-development",
"mocha": "7.0.1",
"proxyquire": "2.1.3",
"sinon": "14.0.0"
},
"files": [
"dist"
],
"nx": {}
}