-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.01 KB
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
{
"name": "@postgeek/post-geek-engine",
"version": "0.0.4",
"description": "Building a game engine one line of code at a time",
"main": "lib/index.js",
"husky": {
"hooks": {
"pre-push": "npm run test && npm run lint"
}
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"jest-canvas-mock"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git@github.com:postgeek/PostGeekEngine.git",
"directory": "@postgeek/post-geek-engine"
},
"scripts": {
"clean": "rimraf lib",
"lint": "eslint ./src --fix",
"lint:ci": "eslint ./src",
"docs": "jsdoc -c jsdoc.json",
"test": "jest --config jest-config.js",
"test:new": "jest --config jest-config-new.js -o",
"start": "webpack serve --config ./webpack.dev.js",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepare": "husky"
},
"author": "PostGeek",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/runtime": "^7.15.4",
"@eslint/js": "^9.32.0",
"babel-jest": "^30.0.5",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^10.0.0",
"css-loader": "^7.1.2",
"docdash": "^2.0.2",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^9.1.7",
"jest": "^30.0.5",
"jest-canvas-mock": "^2.3.1",
"jest-environment-jsdom": "^30.0.5",
"jsdoc": "^4.0.4",
"just-extend": "^6.1.1",
"rimraf": "^6.0.1",
"sass": "^1.42.1",
"sass-loader": "^16.0.5",
"standardized-audio-context-mock": "^9.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.76.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
}
}