forked from kennethormandy/word-o-mat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "word-o-mat",
"version": "0.3.0",
"description": "JavaScript version of Nina Stössinger’s word-o-mat: generate words for type specimens, spacing, and more.",
"author": "Kenneth Ormandy <[email protected]> (http://kennethormandy.com)",
"contributors": [
"Nina Stössinger <[email protected]> (http://ninastoessinger.com)",
"Kenneth Ormandy <[email protected]> (https://kennethormandy.com)"
],
"engines": {
"node": ">=10",
"npm": ">=6"
},
"main": "lib/index.js",
"repository": "https://github.com/kennethormandy/word-o-mat",
"license": "MIT",
"ignore": [
"test",
"build.js",
"preview.gif"
],
"dependencies": {
"alpha-sort": "~1.0.2",
"array-shuffle": "~1.0.0",
"build-regex-group": "0.1.0",
"lodash.includes": "^4.0.0",
"lower-case": "2.0.1",
"title-case": "3.0.2",
"upper-case": "2.0.1"
},
"devDependencies": {
"glob": "^7.0",
"mocha": "^2.3.3",
"napa": "^3.0.0",
"should": "^7.1.1",
"standard": "latest"
},
"napa": {
"word-o-mat": "https://github.com/ninastoessinger/word-o-mat"
},
"scripts": {
"lint": "standard",
"test": "mocha",
"posttest": "npm run lint",
"prebuild": "napa",
"build": "node build.js"
}
}