This repository was archived by the owner on Jul 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.91 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "horsey-sauce",
"version": "0.2.0",
"description": "A SauceLabs Connect Runner",
"main": "src/index.js",
"scripts": {
"lint": "eslint *.{js,mjs} \"src/**/*.{js,mjs}\"",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"version": "npm-auto-version",
"test": "npm run lint && npm run test:unit",
"test:unit": "NODE_ENV=test nyc mocha test/index.js",
"test:runner": "mocha test/runner.js",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/w33ble/horsey-sauce.git"
},
"keywords": [],
"author": "Joe Fleming (https://github.com/w33ble)",
"license": "MIT",
"bugs": {
"url": "https://github.com/w33ble/horsey-sauce/issues"
},
"homepage": "https://github.com/w33ble/horsey-sauce",
"files": [
"src/",
"index.js",
"index.mjs"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"ignore": [
"package.json"
],
"linters": {
"*.{js,mjs}": [
"eslint --fix"
],
"*.{js,mjs,json,css}": [
"prettier --write"
]
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"nyc": {
"extension": [
".mjs",
".js"
]
},
"dependencies": {
"carafe": "^0.5.0",
"sauce-connect-launcher": "^1.2.4",
"wadsworth": "^0.2.0",
"wd": "^1.11.1"
},
"devDependencies": {
"@w33ble/npm-auto-tools": "*",
"codecov": "^3.1.0",
"dotenv": "^6.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"prettier": "^1.15.3"
}
}