forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 890 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
{
"name": "@packages/v8-snapshot-require",
"version": "0.0.0-development",
"description": "Various utils related to create v8 snapshots for electron apps.",
"private": true,
"main": "dist/snapshot-require.js",
"scripts": {
"build": "tsc",
"build-prod": "yarn build",
"check-ts": "tsc --noEmit && yarn -s tslint",
"clean-deps": "rimraf node_modules",
"clean": "rimraf dist",
"test": "yarn test-unit",
"test-unit": "mocha --config ./test/.mocharc.js",
"tslint": "tslint --config ../ts/tslint.json --project .",
"watch": "tsc --watch"
},
"dependencies": {
"@packages/packherd-require": "0.0.0-development",
"debug": "^4.1.1",
"source-map-js": "^0.6.2"
},
"devDependencies": {
"mocha": "7.0.1",
"rimraf": "^3.0.2"
},
"files": [
"dist",
"src/snapshot-require.ts"
],
"types": "src/snapshot-require.ts"
}