-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 925 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 925 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
{
"name": "on-the-fly-battle-maps",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:unit": "NODE_NO_WARNINGS=1 tap ./test/unit --no-cov --no-esm --timeout 30000",
"test:integration": "NODE_NO_WARNINGS=1 tap ./test/integration --no-cov --no-esm --timeout 30000",
"test:integration:update": "NODE_NO_WARNINGS=1 TAP_SNAPSHOT=1 tap ./test/integration --no-cov --no-esm --timeout 30000",
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.753.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"canvas": "^2.6.1",
"fastify": "^2.14.1",
"fastify-static": "^2.7.0",
"nodemon": "^2.0.4",
"tap": "^14.10.7",
"tap-image-snapshot": "github:gingermusketeer/tap-image-snapshot"
}
}