-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
{
"name": "grid-engine-devtools",
"description": "Chrome DevTools Extension for the Phaser3 Grid Engine Plugin",
"version": "0.0.3",
"author": {
"email": "zewa666@gmail.com",
"name": "Vildan Softic",
"url": "https://github.com/zewa666"
},
"repository": {
"type": "git",
"url": "https://github.com/zewa666/grid-engine-devtools"
},
"license": "MIT",
"dependencies": {
"aurelia": "latest",
"uuid": "^8.3.2"
},
"devDependencies": {
"@aurelia/testing": "latest",
"@aurelia/ts-jest": "latest",
"@aurelia/webpack-loader": "latest",
"@types/chrome": "0.0.180",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"autoprefixer": "^10.4.2",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.5.1",
"dotenv-webpack": "^7.0.3",
"eslint": "^8.7.0",
"html-webpack-plugin": "^5.5.0",
"html-webpack-plugin-remove": "git+https://github.com/brandwidth/html-webpack-plugin-remove.git",
"htmlhint": "^1.1.1",
"jest": "^27.4.7",
"jest-transform-stub": "^2.0.0",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"zip-build": "^1.6.0"
},
"scripts": {
"lint:js": "eslint src test --ext .js,.ts",
"lint:html": "htmlhint -c .htmlhintrc src",
"lint": "npm run lint:js && npm run lint:html",
"pretest": "npm run lint",
"start": "webpack serve",
"build": "rimraf dist && webpack --env production",
"analyze": "rimraf dist && webpack --env production --analyze",
"test": "jest",
"zip-build": "zip-build dist ./artifact -t %NAME%_%VERSION%.%EXT%"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"\\.(css|less|sass|scss|styl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "jest-transform-stub",
"\\.(ts|html)$": "@aurelia/ts-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
],
"globals": {
"ts-jest": {
"isolatedModules": true
}
}
}
}