forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
{
"name": "@packages/launcher",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build": "bin-up tsc --project .",
"build-js": "bin-up tsc --project .",
"build-prod": "npm run build",
"check-deps": "node ../../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript",
"preclean": "npm run check-deps-pre",
"clean": "node scripts/clean.js || true",
"clean-deps": "rm -rf node_modules",
"clean-js": "npm run clean",
"size": "npm pack --dry",
"pretest": "npm run check-deps-pre",
"test": "npm run unit",
"unit": "bin-up mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
},
"dependencies": {
"bluebird": "3.5.3",
"debug": "4.1.1",
"execa": "1.0.0",
"fs-extra": "8.1.0",
"lodash": "4.17.15",
"plist": "2.1.0",
"ramda": "0.24.1"
},
"devDependencies": {
"bin-up": "1.2.2",
"chai": "3.5.0",
"cross-env": "6.0.3",
"shelljs": "0.8.3",
"sinon": "2.4.1",
"sinon-chai": "3.3.0"
},
"files": [
"lib"
],
"types": "../ts/index.d.ts"
}