-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
46
47
48
49
50
51
52
53
54
{
"name": "ineedagyro",
"engines": {
"node": "20.18.0",
"npm": ">=10.8.2"
},
"version": "3.0.1",
"type": "module",
"description": "Unless you're eating one right now, you probably need a gyro",
"main": "app.js",
"scripts": {
"build": "node script/copy_js_to_public_js.js",
"heroku-postbuild": "echo Skip build on Heroku",
"prettier": "prettier --write .",
"start": "node app.js",
"test": "npm run build && c8 mocha ./test/**/* --exit",
"test_report": "npm run build && c8 mocha ./test/**/* --exit --reporter mochawesome"
},
"repository": {
"type": "git",
"url": "[email protected]:eebbesen/ineedagyro-js.git"
},
"keywords": [
"gyro",
"gyros"
],
"author": "eebbesen",
"license": "MIT",
"dependencies": {
"body-parser": "latest",
"ejs": "latest",
"express": "latest",
"express-http-to-https": "latest",
"express-session": "latest",
"merge-descriptors": "latest",
"npm": ">=10.8.2",
"request": "latest",
"yelp-fusion": "latest"
},
"devDependencies": {
"c8": "^10.1.2",
"chai": "latest",
"extend": "latest",
"fs": "latest",
"jasmine": "latest",
"mocha": "latest",
"mochawesome": "^7.1.3",
"prettier": "^3.3.3",
"should": "latest",
"sinon": "latest",
"supertest": "latest"
},
"heroku-run-build-script": true
}