-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 942 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "no-cliches",
"version": "0.3.6",
"description": "Find clichés in your writings",
"main": "cliches.js",
"homepage": "https://github.com/duereg/no-cliches",
"author": {
"name": "Matt Blair",
"url": "https://blog.mattblair.co"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"bugs": {
"url": "https://github.com/duereg/no-cliches/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/duereg/no-cliches.git"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && ./node_modules/.bin/jasmine",
"lint": "eslint ./ --fix"
},
"keywords": [
"english",
"writing",
"prose",
"words",
"cliches",
"clichés",
"readability"
],
"license": "MIT",
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.22.1",
"jasmine": "^5.1.0"
}
}