forked from GDevelopApp/GDevelop-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "gdevelop-extensions",
"version": "1.0.0",
"description": "Repository of extensions for GDevelop",
"scripts": {
"test": "jest scripts/",
"format": "prettier --write \"scripts/**/*.ts\" \"scripts/**/*.js\"",
"build": "node scripts/generate-extensions-registry.js",
"deploy": "node scripts/deploy.js",
"check-post-build": "jest post-build",
"check-format": "prettier --list-different \"scripts/**/*.ts\" \"scripts/**/*.js\"",
"check-types": "tsc"
},
"author": "Florian Rival <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"jszip": "^3.10.0",
"minimist": "^1.2.5",
"semver": "^7.3.5",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/jszip": "^3.4.1",
"@types/minimist": "^1.2.1",
"@types/semver": "^7.3.8",
"@types/shelljs": "^0.8.8",
"jest": "^27.0.1",
"prettier": "^2.3.0",
"typescript": "^4.3.2"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/dist/"
]
}
}