-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.28 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
{
"name": "@devshareacademy/common-game-utils",
"version": "0.0.2",
"description": "Variety of helpful functions that are helpful for game development.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"publish:npm": "npm publish --registry https://registry.npmjs.org/ --access public --ignore-scripts",
"publish:github": "npm publish --registry https://npm.pkg.github.com/ --ignore-scripts",
"lint": "eslint ./src --ext .ts,.tsx --config ./config/.eslintrc",
"version": "auto-changelog -p && git add CHANGELOG.md",
"test": "jest --group=unit --runInBand",
"test:group:unit": "jest --group=unit --coverage=false --runInBand",
"test:group:e2e": "jest --group=e2e --coverage=false --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devshareacademy/common-game-utils.git"
},
"keywords": [
"eslint",
"eslintconfig"
],
"author": {
"name": "Scott Westover",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/devshareacademy/common-game-utils/issues"
},
"homepage": "https://github.com/devshareacademy/common-game-utils#readme",
"devDependencies": {
"@devshareacademy/eslint-config": "0.0.16",
"@devshareacademy/prettier-config": "0.0.4",
"@devshareacademy/tsconfig": "0.0.3",
"@types/jest": "27.5.0",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"auto-changelog": "2.4.0",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "28.0.3",
"jest-runner-groups": "2.1.0",
"prettier": "2.6.2",
"ts-jest": "28.0.1",
"typescript": "4.6.4"
},
"dependencies": {},
"prettier": "@devshareacademy/prettier-config",
"volta": {
"node": "16.15.0",
"yarn": "1.22.11"
},
"jest": {
"runner": "groups",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts"
],
"collectCoverage": false,
"coverageDirectory": "coverage",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
},
"auto-changelog": {
"template": "config/changelog-template.hbs",
"unreleased": true,
"commitLimit": false
}
}