Files
GDevelop/GDevelop.js/package.json
T
Arthur Pacaud bc606ed1be Add a console to the games debugger (#2770)
* When launching the Debugger to inspect a game, open the Console to see internal messages sent by the game, JavaScript code or the game engine.
* This is an advanced feature that is useful to find issues in your game or to see if your game is displaying any internal error.
2021-10-21 19:47:28 +01:00

50 lines
1.3 KiB
JSON

{
"name": "GDevelop.js",
"version": "0.0.1",
"author": "Florian Rival <florian.rival@gmail.com> (http://florianrival.com)",
"description": "Core of GDevelop, the open-source game creator requiring no programming skills, ported to Javascript",
"keywords": [
"GDevelop",
"game",
"creator",
"events",
"programming",
"making",
"port"
],
"scripts": {
"build": "grunt build",
"build-with-MinGW": "grunt build --use-MinGW",
"clean": "grunt clean",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"extend": "^2.0.1",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.3.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-mkdir": "^1.0.0",
"grunt-newer": "^1.2.0",
"grunt-shell": "^2.1.0",
"grunt-string-replace": "^1.3.1",
"jest": "^23.5.0",
"shelljs": "^0.8.4",
"webidl-tools": "git://github.com/4ian/webidl-tools.git#87247d37944d9cfdecb4f73da93289929b4077df"
},
"jest": {
"testEnvironment": "node",
"transformIgnorePatterns": [
"../Binaries/embuild/GDevelop.js/libGD.js"
],
"testPathIgnorePatterns": [
"<rootDir>/emsdk/",
"<rootDir>/node_modules/"
]
},
"dependencies": {}
}