-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 844 Bytes
/
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
{
"name": "critic-filter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"eslint": "^7.11.0",
"prettier": "^2.1.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint lib/",
"eslint:test": "eslint lib/ --color",
"prettier:fix": "prettier 'lib/scripts/*.js' --write",
"prettier:test": "prettier 'lib/scripts/*.js' --check",
"eslint:fix": "eslint . --fix",
"htmlhint:test": "htmlhint lib/ui/*/*.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muskankhedia/critic-filter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/muskankhedia/critic-filter/issues"
},
"homepage": "https://github.com/muskankhedia/critic-filter#readme"
}