This repository was archived by the owner on Oct 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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": "yage",
"version": "0.5.0",
"repository": {
"type": "git",
"url": "https://github.com/Testare/yage"
},
"description": "Yet Another Game Engine. A basic platformer game engine with Electron and some other technologies.",
"main": "yage/launcher.js",
"scripts": {
"test": "electron . 'stessa'",
"start": "electron . 'assets'",
"makedo": "npm run build && npm start",
"build": "npm run build:jsx -s && npm run build:docs -s",
"build:jsx": "babel src/main/jsx -d yage",
"build:docs": "cp -r src/main/docs/* yage",
"postinstall": "npm run build",
"watch": "babel -w src/main/jsx -d yage"
},
"files": [
"build"
],
"keywords": [],
"author": "Logan Woodbury <Testare.i9z@gmail.com>",
"license": "ISC",
"dependencies": {
"electron": "^1.6.8",
"html2canvas": "^1.0.0-alpha.12",
"lodash": "^4.17.4",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"babel": {
"presets": [
"react",
"es2017"
],
"plugins": [
"macros",
"transform-class-properties",
"transform-object-rest-spread"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-macros": "^2.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"electron-react-devtools": "^0.4.0"
}
}