-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "too-wordy",
"version": "0.3.6",
"description": "Find wordy or unnecessary passages in your writing",
"main": "too-wordy.js",
"homepage": "https://github.com/duereg/too-wordy",
"author": {
"name": "Matt Blair",
"url": "https://github.com/duereg"
},
"scripts": {
"test": "npm run lint && ./node_modules/.bin/jasmine",
"lint": "eslint ./ --fix"
},
"bugs": {
"url": "https://github.com/duereg/too-wordy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/duereg/too-wordy.git"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=6",
"npm": ">=5"
},
"keywords": [
"english",
"writing",
"prose",
"words",
"complexity",
"readability",
"grammar",
"wordiness",
"wordy"
],
"license": "MIT",
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"jasmine": "^5.1.0"
}
}