-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.29 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": "metawatch",
"version": "1.2.2",
"author": "Timur Shemsedinov <[email protected]>",
"description": "Deep nested directories watch for node.js",
"license": "MIT",
"keywords": [
"fs",
"watch",
"metarhia"
],
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/metawatch.git"
},
"bugs": {
"url": "https://github.com/metarhia/metawatch/issues",
"email": "[email protected]"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"main": "metawatch.js",
"types": "metawatch.d.ts",
"readmeFilename": "README.md",
"files": [
"metawatch.d.ts"
],
"engines": {
"node": "18 || 20 || 21 || 22"
},
"scripts": {
"test": "npm run lint && npm run types && metatests test/",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.yml\" \"**/*.ts\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.yml\" \"**/*.ts\""
},
"devDependencies": {
"@types/node": "^22.3.0",
"eslint": "^9.9.0",
"eslint-config-metarhia": "^9.0.4",
"metatests": "^0.8.2",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}