-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
58
59
60
61
62
{
"name": "an-array-of-english-words",
"version": "2.0.0",
"description": "List of ~275,000 English words",
"license": "MIT",
"keywords": [
"array",
"list",
"english",
"words",
"word"
],
"repository": "words/an-array-of-english-words",
"bugs": "https://github.com/words/an-array-of-english-words/issues",
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com)",
"contributors": [
"Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com)",
"Titus Wormer <[email protected]> (https://wooorm.com)"
],
"main": "index.json",
"bin": {
"words": "./cli.js",
"an-array-of-english-words": "./cli.js"
},
"files": [
"index.json",
"cli.js"
],
"dependencies": {},
"devDependencies": {
"bail": "^1.0.0",
"concat-stream": "^2.0.0",
"prettier": "^1.0.0",
"remark-cli": "^7.0.0",
"remark-preset-wooorm": "^6.0.0",
"tape": "^4.0.0",
"xo": "^0.26.0"
},
"scripts": {
"generate": "node build",
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
"test-api": "node test",
"test": "npm run format && npm run test-api"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
}
}