-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "phaser-plugin-water-body",
"version": "1.0.0-beta02",
"description": "A water body physics plugin for Phaser v3",
"main": "dist.js",
"files": [
"dist.js"
],
"scripts": {
"build": "BABEL_ENV=build rollup -c",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jorbascrumps/phaser-plugin-water-body.git"
},
"keywords": [
"phaser",
"physics",
"water"
],
"author": "jorbascrumps",
"license": "ISC",
"bugs": {
"url": "https://github.com/jorbascrumps/phaser-plugin-water-body/issues"
},
"homepage": "https://github.com/jorbascrumps/phaser-plugin-water-body#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"babel-preset-es2015-rollup": "^3.0.0",
"phaser": "^3.16.2",
"rollup": "^2.64.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0"
},
"babel": {
"env": {
"build": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@babel/preset-env"
]
}
}
}
}