forked from words/rhymes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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": "rhyming.ly",
"version": "0.2.0",
"description": "Give me an English word and I'll give you a list of alliterations and rhymes",
"main": "dist/index.js",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist/*.d.ts",
"dist/*.js"
],
"scripts": {
"build": "tsc",
"build-docs": "typedoc",
"check": "npm run check-ts && npm run check-js",
"check-js": "prettier --list-different src/*.js test/*.js",
"check-ts": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"cov": "nyc report --reporter=json && codecov -f coverage/*.json",
"fix": "npm run fix-ts && npm run fix-js",
"fix-js": "prettier --write src/*.js test/*.js",
"fix-ts": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check && npm run cov",
"release": "standard-version",
"test": "nyc mocha"
},
"repository": "https://github.com/dan1wang/rhyming.ly",
"bugs": "https://github.com/dan1wang/rhyming.ly/issues",
"keywords": [
"alliteration",
"cmu",
"english",
"language",
"rhyme",
"words"
],
"author": "Daniel Wang <daniel.liberated@gmail.com> (https://github.com/dan1wang/)",
"contributors": [
"Zeke Sikelianos (https://github.com/zeke)"
],
"license": "MIT",
"dependencies": {
"cmu-pronouncing-dictionary": "^1.0.1",
"codecov": "^3.3.0",
"nyc": "^13.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"gts": "^0.9.0",
"mocha": "^6.1.2",
"prettier": "^1.15.3",
"standard-version": "^5.0.2",
"typedoc": "^0.14.2",
"typescript": "^3.4.3"
}
}