-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.52 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
{
"name": "game-tetris",
"version": "1.0.0",
"private": true,
"description": "OpenSource Game",
"author": "Ronaldo Santiago",
"license": "MIT",
"scripts": {
"start": "webpack serve --config ./webpack.setzer.config",
"bundle": "webpack --env production --config ./webpack.setzer.config",
"autoformat": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --write --list-different .",
"lint-fix:src": "eslint -c .eslintrc.js --ext .ts ./src --fix",
"lint-fix:test": "eslint -c .eslintrc.js --ext .ts ./test --fix",
"lint-fix": "npm run lint-fix:src && npm run lint-fix:test",
"lint:src": "eslint -c .eslintrc.js --ext .ts ./src",
"lint:test": "eslint -c .eslintrc.js --ext .ts ./test",
"lint": "npm run lint:src && npm run lint:test",
"cleanup": "rimraf .nyc_output && rimraf dist",
"build": "npm run cleanup && npm run bundle",
"prepare": "npm run build",
"test": "nyc mocha"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src/**/*.ts"
],
"exclude": [
"test"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"lcov"
],
"check-coverage": true,
"sourceMap": true,
"instrument": true
},
"keywords": [
"RobotlegsJS",
"RobotlegsJS-Pixi",
"RobotlegsJS-Pixi-Palidor",
"TypeScript",
"PixiJS",
"Game"
],
"dependencies": {
"@robotlegsjs/core": "^3.1.0",
"@robotlegsjs/pixi": "^4.0.0",
"@robotlegsjs/pixi-palidor": "^4.0.0",
"pixi.js": "^6.3.2",
"reflect-metadata": "^0.1.13",
"tslib": "^2.3.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@rushstack/eslint-config": "^2.3.4",
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@types/webpack-env": "^1.16.2",
"chai": "^4.3.4",
"eslint": "^7.30.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.4.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unicorn": "^34.0.1",
"html-webpack-plugin": "^5.3.2",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "~4.2.4",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}