-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 1.47 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
{
"name": "iptv-checker-module",
"version": "2.0.5",
"description": "Check the status of IPTV channels in an .m3u playlist file",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "npx eslint ./src/**/*.js ./test/*.js",
"test": "npx ava",
"prePush": "npm-run-all -p lint test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/detroitenglish/iptv-checker-module.git"
},
"author": "Dave Willenberg <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/detroitenglish/iptv-checker-module/blob/master/README.md",
"keywords": [
"iptv",
"m3u",
"m3u8",
"checker",
"playlists"
],
"dependencies": {
"axios": "^0.21.1",
"colors": "^1.4.0",
"command-exists": "^1.2.9",
"iptv-playlist-parser": "^0.5.4",
"nanoid": "^3.1.10",
"valid-url": "^1.0.9"
},
"devDependencies": {
"ava": "^3.9.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5"
},
"engines": {
"node": ">=10.0.0"
},
"ava": {
"failFast": true,
"concurrency": 2,
"timeout": "1m",
"files": [
"test/*.test.js"
]
},
"husky": {
"hooks": {
"pre-push": "npm run prePush"
}
}
}