-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "tv-lines",
"version": "1.2.4",
"description": "",
"main": "dist/index.js",
"standard": {
"ignore": [
"/dist"
]
},
"scripts": {
"dev": "rm -rf dist/ && rollup -c rollup.dev.config.js --watch",
"build": "rimraf dist & tsc",
"lint": "eslint ./src --fix --ext .js,.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors",
"ts:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wnz99/tv-lines.git"
},
"author": "David Fava <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/wnz99/tv-lines/issues"
},
"homepage": "https://github.com/wnz99/tv-lines#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.16.5",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^27.4.5",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"git-branch-is": "^4.0.0",
"jest": "^27.4.5",
"jest-extended": "^1.2.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"pretty-quick": "^3.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.1",
"typescript": "^4.5.4"
},
"dependencies": {
"lodash": "^4.17.21",
"md5": "^2.3.0",
"rxjs": "^7.4.0"
}
}