-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 1.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "powerthesaurus-api",
"version": "2.0.3",
"description": "Look up English synonyms, antonyms, etc using powerthesaurus.org",
"license": "MIT",
"keywords": [
"powerthesaurus",
"english",
"synonym",
"antonym",
"related",
"narrower",
"broader",
"similar",
"rhymes",
"thesaurus"
],
"repository": "words/powerthesaurus-api",
"bugs": "https://github.com/words/powerthesaurus-api/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.js",
"files": [
"index.js"
],
"dependencies": {
"hast-util-select": "^4.0.0",
"hast-util-to-string": "^1.0.0",
"node-fetch": "^2.0.0",
"rehype-parse": "^6.0.0",
"unified": "^9.0.0"
},
"devDependencies": {
"nyc": "^15.0.0",
"prettier": "^2.0.0",
"remark-cli": "^8.0.0",
"remark-preset-wooorm": "^7.0.0",
"tape": "^4.0.0",
"xo": "^0.29.0"
},
"scripts": {
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run format && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"unicorn/prefer-number-properties": "off",
"unicorn/prefer-set-has": "off",
"promise/prefer-await-to-then": "off"
}
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
}
}