-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "cypress-eslint-preprocessor",
"version": "1.2.2",
"description": "Cypress plugin that will run linting via ESLint on your spec files as they are loaded and display errors in console",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test/index.spec.js logger.js",
"test": "mocha --require babel-core/register --reporter spec \"test/index.spec.js\"",
"test:watch": "npm test -- --watch",
"prepublish": "npm run lint && npm test"
},
"keywords": [
"cypress",
"cypress-plugin",
"cypress-preprocessor",
"eslint"
],
"author": {
"name": "Heather Roberts",
"email": "heather.roberts427@gmail.com"
},
"license": "ISC",
"dependencies": {
"@cypress/browserify-preprocessor": "^1.0.2",
"chalk": "^2.3.2",
"eslint": "^4.19.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.24.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"mocha": "^5.0.5",
"mockery": "^2.1.0",
"sinon": "^4.5.0"
}
}