-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2 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
{
"name": "nuxtjs-phaser",
"version": "3.0.16",
"description": "Empower your Phaser game with Vue/Nuxt",
"module": "dist/index.js",
"types": "dist/@types/index.d.ts",
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"scripts": {
"test": "jest",
"ci": "npm run build && npm run test && npm run lint && npm run check",
"build": "npm run build:clean && npm run build:esm && npm run build:types && npm run build:assets",
"build:esm": "tsc -p config/tsconfig.esm.json",
"build:types": "tsc -p config/tsconfig.types.json",
"build:clean": "rimraf ./dist ",
"build:assets": "node tasks/copy-assets.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint . --ext .ts",
"check": "tsc --noEmit",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"publish": "npm run build && (cd dist/ && npm publish)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/williampsena/-nuxt-phaser"
},
"keywords": [
"nuxt",
"phaser"
],
"author": "William Sena",
"license": "MIT",
"dependencies": {
"phaser": "^3.60.0",
"vue": "^3.2.47",
"typescript": "^5.0.4"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@nuxt/types": "^2.16.3",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@vue/test-utils": "^2.3.2",
"@vue/vue3-jest": "^29.2.3",
"eslint": "^8.39.0",
"jest-canvas-mock": "^2.5.0",
"jest-environment-jsdom": "^29.5.0",
"nuxt": "^3.4.3",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"shelljs": "^0.8.5",
"ts-jest": "^29.1.0"
}
}