-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "tunasync",
"version": "1.0.0",
"description": "Async library for node.js",
"main": "tunasync.js",
"scripts": {
"test": "metatests test/",
"docs": "documentation readme lib/ --section=API",
"types": "types/tunasync.d.ts",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.yml\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.yml\" \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Scopics/tunasync.git"
},
"files": [
"lib/"
],
"readmeFilename": "README.md",
"keywords": [
"async",
"asyncronous",
"promise",
"nodejs",
"asynclib"
],
"author": "Uryn Dmytro, Govoruha Maxim, Trembach Anastasia",
"license": "MIT",
"bugs": {
"url": "https://github.com/Scopics/tunasync/issues"
},
"homepage": "https://github.com/Scopics/tunasync#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/node": "^15.3.1",
"documentation": "^13.1.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-prettier": "^3.4.0",
"metatests": "^0.7.2",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
}
}