-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "words",
"version": "0.2.1",
"type": "module",
"description": "Word Generator provides hints while playing games like Letterpress, Words with Friends, and Scrabble.",
"homepage": "https://hudson.dev/words",
"keywords": [
"words",
"letters",
"anagrams",
"dictionary",
"dict"
],
"author": "Matthew Hudson <[email protected]>",
"bugs": "https://github.com/matthewhudson/words/issues",
"repository": {
"type": "git",
"url": "https://github.com/matthewhudson/words.git"
},
"main": "index",
"license": "MIT",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "jest",
"test:coverage": "jest --coverage && codecov",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/core": "7.21.3",
"@babel/preset-env": "7.20.2",
"@jest/transform": "29.5.0",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "10.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"babel-jest": "29.5.0",
"codecov": "3.8.3",
"cz-conventional-changelog": "3.3.0",
"jest": "29.5.0",
"rollup": "3.20.1",
"semantic-release": "20.1.3",
"standard": "17.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}