-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 856 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 856 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
{
"name": "ReplTests",
"version": "1.0.0",
"description": "Part of the ReplAPI.it Projects ~ Download your Unit Tests from Your Repl",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js --experimental-module",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write"
},
"dependencies": {
"adm-zip": "^0.5.5",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"nanoid": "^3.1.23",
"replapi-it": "^2.3.3",
"rimraf": "^3.0.2"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.0"
},
"license": "MIT",
"author": "The ReplAPI.it Project"
}