-
Notifications
You must be signed in to change notification settings - Fork 951
/
Copy pathpackage.json
51 lines (51 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
{
"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",
"lint": "node scripts/lint-with-clang-tidy.js",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.3.1",
"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": "^29.7.0",
"prettier": "^3.2.2",
"shelljs": "^0.8.4",
"webidl-tools": "github:4ian/webidl-tools#348f9c03afc9d8f278efccdd74543e265a41fd11"
},
"jest": {
"testEnvironment": "node",
"transformIgnorePatterns": [
"../Binaries/embuild/GDevelop.js/libGD.js"
],
"testPathIgnorePatterns": [
"<rootDir>/emsdk/",
"<rootDir>/node_modules/"
]
}
}