-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "hashcode_cthulhus_knights",
"version": "1.0.0",
"description": "Repository per il Kata relativo all'HashCode del 5 Febbraio 2021",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:local": "nodemon index.js",
"lint": "eslint src --ext .js",
"unit": "tap --test-regex=/.test.js/g",
"unit:update-snapshot": "npm run unit -- --snapshot",
"test": "npm run lint && npm run unit"
},
"devDependencies": {
"tap": "^14.10.8",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fs-extra": "^7.0.1",
"nodemon": "^2.0.7"
},
"type": "commonjs",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silversoul93/hashcode_cthulhus_knights.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/silversoul93/hashcode_cthulhus_knights/issues"
},
"homepage": "https://github.com/silversoul93/hashcode_cthulhus_knights#readme",
"dependencies": {
"archiver": "^5.2.0",
"lodash.get": "^4.4.2"
}
}