-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "cheers-receiver",
"version": "2.0.0",
"description": "Simple HTTP Node.js server that counts amount of cheers given.",
"main": "src/server.mjs",
"files": [
"src"
],
"scripts": {
"start": "node src/main.mjs",
"dev": "nodemon --inspect src/main.mjs",
"test": "NODE_ENV=test ava test/*.mjs",
"test:ci": "npm run test && npm run lint",
"test:watch": "npm run test -- --watch",
"lint": "npm run prettier -- --check",
"format": "npm run prettier -- --write",
"prettier": "prettier '{src,test}/**/*.mjs'"
},
"dependencies": {
"escape-goat": "^4.0.0",
"got": "^11.8.5",
"leveldown": "^6.1.0",
"levelup": "^5.1.1",
"micro": "^9.3.0"
},
"devDependencies": {
"ava": "^3.15.0",
"memdown": "^6.1.1",
"nodemon": "^2.0.14",
"prettier": "^2.4.1"
},
"engines": {
"node": ">=16"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"repository": {
"url": "https://github.com/Siilwyn/cheers-receiver.git",
"type": "git"
},
"author": "Selwyn <[email protected]> (https://selwyn.cc/)",
"license": "ISC"
}