-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "eslint-plugin-eta",
"version": "0.1.0",
"description": "An ESLint plugin so you can lint Eta template files",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage",
"test:prod": "npm run lint && npm run test -- --no-cache",
"test:watch": "jest --coverage --watch",
"format": "prettier --write lib/**/*.js test/**/*.js",
"lint": "eslint lib/**/*.js test/**/*.js --ext .js",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"eslint",
"eslintplugin"
],
"author": "shadowtime2000",
"license": "MIT",
"peerDependencies": {
"eslint": ">=0.8.0",
"eta": ">=1.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"eslint-config-eta-dev": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eta": "^1.11.0",
"jest": "^26.6.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
}
}