-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
{
"name": "@kleber-swf/phaser-runtime-editor",
"version": "1.5.0",
"description": "A runtime editor for Phaser-CE projects",
"author": "Kleber Silva <[email protected]>",
"license": "MIT",
"keywords": [
"phaser-ce",
"runtime",
"editor",
"scene",
"game",
"development",
"gamedev"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kleber-swf/phaser-runtime-editor.git"
},
"bugs": {
"url": "https://github.com/kleber-swf/phaser-runtime-editor/issues"
},
"homepage": "https://github.com/kleber-swf/phaser-runtime-editor#readme",
"publishConfig": {
"access": "public"
},
"main": "dist/phaser-runtime-editor.js",
"styles": "dist/phaser-runtime-editor.css",
"input": "src/index.ts",
"module": "PhaserRuntimeEditor",
"scripts": {
"dev": "rollup -w -c ./config/rollup.config.dev.js",
"predev": "npm run barrel",
"barrel": "barrelsby -c ./config/barrelsby.json",
"lint": "eslint --cache --fix --color --ext .ts \"src\"",
"example": "browser-sync start -c ./config/bs-config.js",
"postinstall": "npm rebuild node-sass",
"prebuild": "npm run changelog; rm -rf dist; npm run barrel",
"build": "rollup -c ./config/rollup.config.js",
"prepublishOnly": "npm run build",
"changelog": "auto-changelog -p -c config/auto-changelog.json && git add CHANGELOG.md && git commit -m \"Changelog updated\""
},
"dependencies": {
"phaser-ce": "^2.19.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"auto-changelog": "^2.4.0",
"autoprefixer": "^10.4.0",
"barrelsby": "^2.3.0",
"browser-sync": "^2.27.7",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.4",
"rollup": "^2.60.2",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.54.8",
"terser": "^5.10.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
}
}