forked from DistributedProofreaders/dproofreaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "dproofreaders",
"version": "1.0.0",
"description": "Distributed Proofreaders is a web application intended to ease the process of converting public domain books into e-texts.",
"scripts": {
"lint": "eslint --max-warnings=0",
"lint-fix": "eslint --fix",
"format-check": "prettier '**/*.js' --check",
"format": "prettier '**/*.js' --write",
"test": "node ./SETUP/tests/jsTests/jsUnit.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DistributedProofreaders/dproofreaders.git"
},
"keywords": [
"ebooks",
"proofreading",
"public-domain"
],
"author": "",
"license": "SEE LICENSE IN license.txt",
"bugs": {
"url": "https://www.pgdp.net/c/tasks.php"
},
"homepage": "https://github.com/DistributedProofreaders/dproofreaders",
"devDependencies": {
"@eslint/js": "^9.9.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"geckodriver": "^4.4.3",
"globals": "^15.9.0",
"less": "^4.2.0",
"prettier": "^3.3.3",
"selenium-webdriver": "^4.23.0"
},
"prettier": {
"tabWidth": 4,
"printWidth": 160
}
}