-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 874 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 874 Bytes
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": "rpgmaker_save_editor",
"version": "1.0.0",
"description": "Save file editor for RPGMaker games",
"main": "js/main.js",
"scripts": {
"start": "electron .",
"dev": "NODE_ENV=development electron .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format": "prettier --write \"**/*.{js,json,md,css,html}\"",
"format:check": "prettier --check \"**/*.{js,json,md,css,html}\""
},
"author": "Nathan Baker",
"license": "MIT",
"devDependencies": {
"electron": "^35.1.4",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"pako": "^2.1.0",
"prettier": "^3.6.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
],
"collectCoverageFrom": [
"js/**/*.js",
"!js/preload.js",
"!js/main.js"
],
"coverageDirectory": "coverage",
"verbose": true
}
}