-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "node-rjdl",
"version": "3.0.0",
"description": "Nodejs Radio Javan downloader",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc && npm run doc",
"doc": "jsdoc -c ./jsdoc.config.json",
"style": "npx prettier ./src --write",
"test": "npx jest -c jest.config.ts",
"e2eTest": "npx jest -c jest.config.e2e.ts",
"unitTest": "npx jest -c jest.config.unit.ts"
},
"author": "keivan",
"keywords": [
"Radio Javan",
"rj",
"RadioJavan",
"RadioJavan Downloader"
],
"license": "ISC",
"dependencies": {
"@types/he": "^1.1.2",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.7.6",
"axios": "^0.21.4",
"he": "^1.2.0",
"jsdom": "^20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Keivan-sf/rjdl.git"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"clean-jsdoc-theme": "^4.1.7",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"jsdoc": "3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}