-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
147 lines (147 loc) · 4.33 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "divine-engine",
"version": "1.0.3",
"description": "The Divine Engine is a Typescript game engine. Built on latest technologies, it allows users to develop and deploy lightweight games in a modern development standard environment. The engine is focused to be modular and lightweight, all while allowing developers to quickly build projects and applications and reuse previous assets swiftly.",
"main": "./lib/divine.umd.js",
"module": "./lib/divine.es.js",
"types": "./lib/index.d.ts",
"engines": {
"npm": ">=8.3.0"
},
"scripts": {
"build": "tsc",
"bundle": "tsc; rollup -c",
"clean": "rm -rf lib/* docs/* dist/*",
"commit": "npm run lint; git add --all; git-cz; git push",
"docs": "typedoc --excludeExternals --externalPattern \"node_modules/**\" --name Divine\\ Engine\\ API --out docs --readme none src/* --theme default",
"lint": "eslint -c .eslintrc.json src/**/*.ts --quiet",
"lint:fix": "eslint -c .eslintrc.json src/**/*.ts --fix --quiet",
"release": "standard-version",
"test": "npm run test:all",
"test:all": "jest --coverage",
"test:functional": "jest test/functional/**/*\\.spec\\.[jt]s",
"test:integration": "jest test/integration/**/*\\.spec\\.[jt]s",
"test:unit": "jest test/unit/**/*\\.spec\\.[jt]s",
"watch": "tsc; rollup -c --watch.exclude \"node_modules/**\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/srepollock/divine-engine.git"
},
"keywords": [
"typescript",
"game-engine",
"game-development"
],
"author": "Spencer Pollock <[email protected]> (http://spollock.ca)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/srepollock/divine-engine/issues"
},
"homepage": "http://spollock.ca/divine-engine",
"dependencies": {
"de-loggingsystem": "^1.1.1"
},
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@joseph184/rollup-plugin-node-builtins": "^2.1.4",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.36",
"@types/puppeteer": "^5.4.6",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-jest": "^28.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eledoc": "^0.2.1",
"eslint": "^8.16.0",
"fsevents": ">=2.3.2",
"git-cz": "^4.9.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-puppeteer": "^6.1.0",
"lodash": ">=4.17.21",
"puppeteer": "^14.1.2",
"rollup": "^2.75.4",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-typescript2": "^0.31.2",
"standard-version": ">=8.0.1",
"ts-jest": "^28.0.3",
"tslint-to-eslint-config": "^2.13.4",
"typedoc": "^0.22.16",
"typescript": ">=3.8.0"
},
"overrides": {
"cryptiles": "4.1.2",
"highlight.js": "10.4.1",
"merge": "2.1.1",
"trim-newlines": "3.0.1",
"json-schema": "0.4.0",
"marked": "4.0.11",
"ajv": "6.12.3",
"minimist": "1.2.6",
"mem": "4.0.0",
"kind-of": "6.0.3",
"yargs-parser": "13.1.2",
"ansi-regex": "5.0.1",
"hawk": "9.0.1",
"ini": "1.3.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"coverageDirectory": "coverage",
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"functions": 50,
"branches": 30,
"lines": 50,
"statements": 50
},
"./src/math": {
"functions": 100,
"branches": 100,
"lines": 100,
"statements": 100
},
"./src/helper": {
"functions": 100,
"branches": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "jsdom",
"preset": "ts-jest",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"modulePaths": [
"<rootDir>"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/core/messagesystem/"
],
"testPathIgnorePatterns": [
"<rootDir>/src/core/messagesystem/test/.*(test|spec)\\.[jt]sx?$"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator"
]
}
}