-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "phaser-plugin-list-view",
"version": "1.1.0",
"description": "",
"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",
"watch": "npm run build -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamchristopher/phaser-plugin-list-view.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/iamchristopher/phaser-plugin-list-view/issues"
},
"homepage": "https://github.com/iamchristopher/phaser-plugin-list-view#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-preset-es2015-rollup": "^3.0.0",
"rollup": "^1.3.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1"
},
"babel": {
"env": {
"build": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@babel/preset-env"
]
}
}
}
}