-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "tslint-plugin-cypress",
"version": "2.0.0-beta.1",
"description": "Set of tslint rules for cypress.io.",
"main": "tslint-cypress.json",
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc -p tsconfig-release.json",
"dev": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"test": "jest",
"lint": "tslint -p . -t stylish -c tslint.json src/**/*.ts spec/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krzysztof-grzybek/cypress-nano-linter.git"
},
"keywords": [
"Cypress",
"cypress.io",
"lint",
"tslint"
],
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/node": "^10.7.1",
"jest": "^23.5.0",
"ncp": "^2.0.0",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"dependencies": {
"tsutils": "^3.0.0"
},
"peerDependencies": {
"tslint": "^5.0.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/**/*.spec.ts"
],
"testEnvironment": "node"
},
"author": "Krzysztof Grzybek <krzysztof.grzybek89@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/krzysztof-grzybek/cypress-nano-linter/issues"
},
"homepage": "https://github.com/krzysztof-grzybek/cypress-nano-linter"
}