-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "megalopolis",
"version": "1.0.0",
"description": "Generate random neighborhood, street, and other city infrastructure names",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/rwampler/megalopolis.git"
},
"author": "rwampler",
"license": "MIT",
"keywords": [
"random",
"name",
"generate",
"neighborhood",
"street",
"route"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && npm run test:lint && npm run test:unit",
"test:lint": "eslint src --ext .ts",
"test:unit": "vitest --run --dir tst",
"doc": "npm run doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
"prepare-release": "npm run test && npm run doc:html",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"dependencies": {
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@types/seedrandom": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"open-cli": "^8.0.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.8",
"typescript": "^5.3.3",
"vitest": "^1.3.0"
},
"files": [
"build/main",
"!**/*.spec.*",
"!**/*.json",
"LICENSE",
"README.md"
]
}