-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "fantasy-content-generator",
"version": "4.9.1",
"homepage": "https://github.com/thomascgray/fantasy-content-generator",
"description": "Generates RPG friendly, fantasy themed content, such as names, NPCs, magic items, and more",
"keywords": [
"dungeons and dragons",
"dnd",
"dnd5e",
"rpg",
"ttrpg",
"table-top-role-playing",
"procgen",
"procedural generation",
"rpg-tool",
"dnd-tool"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"preversion": "npm test",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags",
"test": "cross-env ENVIRONMENT=test npx jest",
"build": "npm run build:node && npm run build:browser",
"build:node": "tsc",
"build:browser": "tsc && npx parcel build ./dist/index_browser.js .dist/**/*.json --out-dir ./ -o fantasy_content_generator.js --no-source-maps",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"author": "Tom Gray <tom.c.gray@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"cross-env": "^7.0.0",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"lodash": "^4.17.14",
"parcel-bundler": "^1.12.4",
"release-it": "^12.3.3",
"require-globify": "^1.4.1",
"terser": "^4.8.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3",
"uglify-js": "^3.4.9"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"seedrandom": "^3.0.5"
}
}