-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.49 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "mudjs",
"version": "0.2.8",
"description": "A library for making MUD type games.",
"keywords": [],
"type": "module",
"main": "lib/mudjs.js",
"types": "lib/mudjs.d.ts",
"files": [
"lib",
"src"
],
"author": "Caleb Eno",
"repository": {
"type": "git",
"url": "https://github.com/calebeno/mudjs.git"
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "tsc -p tsconfig.json -w",
"prebuild": "rimraf lib && rimraf docs",
"build": "npm run build:serializedJsonSchema && npm run build:library && npm run build:docs",
"build:library": "tsc -p tsconfig.json",
"build:docs": "typedoc --out docs --target es6 --theme minimal --mode file src",
"build:serializedJsonSchema": "typescript-json-schema \"./src/interfaces/serialized.interfaces.ts\" MUDGameSerialized > ./src/interfaces/serialized-MUDGame.schema.json",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "gh-pages -d docs",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"precommit": "lint-staged",
"commit": "git-cz",
"prepush": "npm run test:prod && npm run build",
"prepare": "npm run build",
"prepublishOnly": "npm run test:prod && npm run lint",
"preversion": "npm run lint && npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": true,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^13.0.0",
"@commitlint/config-conventional": "^13.0.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.24",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"colors": "^1.4.0",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"gh-pages": "^3.2.3",
"husky": "^4.3.8",
"jest": "^27.0.6",
"jest-config": "^27.0.6",
"lint-staged": "^10.5.4",
"prettier": "^1.19.1",
"prompt": "^1.1.0",
"replace-in-file": "^5.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.52.7",
"semantic-release": "^17.4.4",
"shelljs": "^0.8.4",
"ts-jest": "^27.0.3",
"ts-node": "^8.10.2",
"tsc-watch": "^4.4.0",
"tslib": "^2.3.0",
"typedoc": "^0.17.8",
"typescript": "^4.3.5",
"typescript-json-schema": "^0.50.1"
},
"dependencies": {
"ajv": "^8.6.3",
"lodash": "^4.17.21",
"uuid": "8.3.2"
}
}