-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 837 Bytes
/
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
{
"name": "solarstorm",
"version": "1.0.0",
"description": "Solar Storm",
"main": "solarstorm.js",
"repository": "[email protected]:drasill/bga-solar-storm.git",
"author": "Christophe Badoit ([email protected])",
"license": "MIT",
"private": false,
"scripts": {
"build": "babel -o solarstorm.js solarstorm-src.js",
"dev": "babel -s -o solarstorm.js solarstorm-src.js"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-template-literals": "^7.10.5",
"@babel/preset-env": "^7.10.4"
},
"babel": {
"plugins": [
[
"@babel/plugin-proposal-class-properties"
],
[
"@babel/plugin-transform-template-literals",
{
"loose": true
}
]
]
},
"browserslist": [
"defaults"
]
}