-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.85 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
{
"name": "phaser-ui-components",
"version": "3.1.3",
"description": "phaser.io UI component library for use in browser games using the Phaser3 game engine",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src/**/*"
],
"scripts": {
"clean": "npx rimraf ./dist && npx rimraf ./coverage",
"build": "npm run clean && npx tsc",
"test": "npx karma start --coverage",
"test:dev": "npx karma start --coverage --no-single-run --browsers=ChromeDebugging",
"preparedist": "cp ./package.json ./dist && cp ./LICENSE ./dist && cp ./README.md ./dist",
"pkg": "npm run build && npm run preparedist && npm pack ./dist",
"pub": "npm run build && npm run preparedist && npm publish ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bicarbon8/phaser-ui-components.git"
},
"keywords": [
"phaser",
"phaser3",
"phaser-ui",
"html5-game",
"ui-component"
],
"author": "Jason Holt Smith <bicarbon8@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bicarbon8/phaser-ui-components/issues"
},
"homepage": "https://github.com/bicarbon8/phaser-ui-components#readme",
"devDependencies": {
"@types/jasmine": "^4.0.0",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.23",
"buble": "^0.20.0",
"jasmine": "^4.0.2",
"jasmine-core": "^4.0.1",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-rollup-preprocessor": "^7.0.8",
"karma-spec-reporter": "0.0.33",
"karma-typescript": "^5.5.3",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-buble": "^0.19.8",
"tsup": "^5.12.1",
"typescript": "^4.6.2"
},
"dependencies": {
"lodash": "^4.17.21",
"phaser": "^3.55.2"
}
}