-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 789 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 789 Bytes
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
{
"name": "random-word-slugs",
"version": "0.1.7",
"description": "A random word slug generator pre-loaded with many words",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"prepublish": "tsc",
"populate-readme": "npx ts-node ./scripts/populateReadme.ts"
},
"keywords": [
"random words",
"random slugs",
"slug",
"slug generator",
"javascript",
"typescript"
],
"author": "Nick Scialli",
"license": "MIT",
"bugs": {
"url": "https://github.com/nas5w/random-word-slugs/issues"
},
"homepage": "https://github.com/nas5w/random-word-slugs#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"typescript": "^4.1.3"
}
}