forked from clement-escolano/parse-torrent-title
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.31 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
{
"name": "parse-torrent-title",
"version": "1.3.0",
"description": "Parse torrent title to extract useful information",
"main": "index.js",
"keywords": [
"parse",
"torrent",
"title",
"name",
"extract",
"information"
],
"scripts": {
"lint": "eslint .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/clement-escolano/parse-torrent-title.git"
},
"homepage": "https://github.com/clement-escolano/parse-torrent-title#readme",
"author": "Clément Escolano <clement.escolano@icloud.com>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"types": "index.d.ts",
"dependencies": {
"moment": "^2.24.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.0.0",
"eslint-config-eslint": "^5.0.1",
"eslint-plugin-node": "^9.1.0",
"mocha": "^7.1.2"
},
"eslintConfig": {
"extends": "eslint",
"env": {
"es6": true,
"mocha": true,
"node": true
},
"rules": {
"comma-dangle": [
"error",
"only-multiline"
],
"newline-after-var": "off",
"padding-line-between-statements": "off",
"no-param-reassign": "off",
"require-jsdoc": "off",
"strict": [
"error",
"never"
],
"valid-jsdoc": "off"
}
}
}