-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 968 Bytes
/
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
{
"name": "filmhub",
"version": "3.0.0",
"author": "Guskov Danil<[email protected]>",
"description": "University team work",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/University/filmhub"
},
"bugs": {
"url": "https://github.com/University/filmhub/issues"
},
"main": "server.js",
"types": "types/global.d.ts",
"scripts": {
"test": "metatests test/",
"types": "tsc -p types/tsconfig.json",
"lint": "eslint . --fix && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.yml\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.yml\" \"**/*.ts\""
},
"engines": {
"node": "^12.9 || 14 || 15"
},
"devDependencies": {
"@types/node": "^14.14.41",
"eslint": "^7.24.0",
"metatests": "^0.7.2",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"dependencies": {
"impress": "^2.2.0",
"metasql": "^1.0.1"
}
}