-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "rhymer",
"version": "0.6.0",
"author": "Patrick El-Hage",
"license": "ISC",
"description": "A command-line tool for querying Rhymezone",
"main": "built/index.js",
"repository": {
"type": "git",
"url": "https://github.com/pelhage/rhymer.git"
},
"scripts": {
"test": "./node_modules/.bin/jest ./src/ --collectCoverage",
"format": "prettier --write ./src/**/*.{js,ts}",
"build": "tsc",
"test:watch": "./node_modules/.bin/jest ./src/ --watchAll"
},
"bin": {
"rhymer": "bin/rhymer.js"
},
"keywords": [
"rhymer",
"rhymezone",
"cli",
"datamuse"
],
"dependencies": {
"axios": "^0.19.0",
"chalk": "^2.4.1",
"commander": "^5.1.0",
"lodash.frompairs": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^12.12.38",
"husky": "^4.2.5",
"jest": "^24.7.1",
"lint-staged": "^10.2.2",
"nock": "^12.0.3",
"prettier": "1.14.3",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
}
}