forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.7 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
{
"name": "@packages/launcher",
"version": "0.0.0",
"private": true,
"main": "index.js",
"types": "../ts/index.d.ts",
"scripts": {
"deps": "deps-ok",
"pretest": "npm run lint",
"test": "npm run unit",
"unit": "bin-up mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"clean-deps": "rm -rf node_modules",
"preclean": "npm run deps",
"clean": "node scripts/clean.js || true",
"clean-js": "npm run clean",
"lint": "npm run format-ts && npm run lint-ts && npm run lint-js",
"lint-js": "bin-up eslint --fix *.js",
"lint-ts": "tslint --project . --fix --format stylish lib/*.ts lib/**/*.ts",
"format-ts": "prettier --no-semi --single-quote --write lib/*.ts lib/**/*.ts",
"build-js": "tsc",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
},
"files": [
"lib"
],
"devDependencies": {
"@cypress/releaser": "0.1.12",
"@types/bluebird": "^3.5.3",
"@types/chai": "^3.5.2",
"@types/debug": "0.0.29",
"@types/execa": "^0.7.0",
"@types/fs-extra": "3.0.0",
"@types/lodash": "^4.14.64",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.18",
"bin-up": "^1.1.0",
"chai": "^3.5.0",
"prettier": "^1.7.0",
"deps-ok": "^1.2.1",
"shelljs": "^0.7.8",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"tslint": "5.8.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.6.2",
"@types/ramda": "0.24.14"
},
"dependencies": {
"bluebird": "^3.5.0",
"debug": "^2.6.6",
"execa": "^0.6.3",
"fs-extra": "^3.0.0",
"lodash": "^4.11.1",
"plist": "^2.1.0",
"pluralize": "^7.0.0",
"ramda": "^0.24.1"
}
}