forked from metarhia/metautil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "metautil",
"version": "3.5.19",
"author": "Timur Shemsedinov <[email protected]>",
"license": "MIT",
"description": "Metarhia utilities",
"keywords": [
"node.js",
"metarhia",
"util"
],
"main": "metautil.js",
"types": "metautil.d.ts",
"files": [
"lib/",
"metautil.d.ts"
],
"engines": {
"node": "^12.9 || 14 || 16 || 17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/metautil.git"
},
"bugs": {
"url": "https://github.com/metarhia/metautil/issues",
"email": "[email protected]"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"scripts": {
"test": "npm run lint && npm run types && metatests test/",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\""
},
"devDependencies": {
"@types/node": "^17.0.21",
"eslint": "^8.11.0",
"eslint-config-metarhia": "^7.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"metatests": "^0.8.1",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
}
}