-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "tailcat",
"version": "1.0.2",
"description": "Utility to watch a file and emit the changes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint --format stylish",
"format": "prettier --write \"source/**/*.ts\"",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "npm audit --audit-level=moderate && npm run format && npm run lint && nyc ava",
"clean": "del-cli lib",
"build-lib": "npm run test && npm run build",
"deploy": "npm run build-lib && np"
},
"engines": {
"node": ">=12"
},
"keywords": [
"fs",
"file",
"watch file",
"tail",
"log"
],
"repository": "simonjang/tailcat",
"files": [
"lib"
],
"author": {
"name": "Simon Jang",
"email": "simon.jang.contact@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/fs-extra": "^9.0.11",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"ava": "^3.15.0",
"del-cli": "^3.0.1",
"delay": "^5.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"fs-extra": "^9.1.0",
"np": "^7.5.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"tempy": "^1.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}