-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "jdownloader-client",
"version": "1.0.0",
"description": "",
"main": "dist/jdownloader-client",
"dependencies": {
"axios": "^0.17.1"
},
"devDependencies": {
"@types/jest": "^22.1.1",
"@types/node": "^9.4.0",
"jest": "^22.1.4",
"prettier": "1.10.2",
"ts-jest": "^22.0.3",
"tslint": "^5.9.1",
"typedoc": "^0.10.0",
"typescript": "^2.7.1"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"compile:cjs": "tsc -p ./tsconfig/tsconfig.cjs.json",
"compile:esm5": "tsc -p ./tsconfig/tsconfig.esm5.json",
"compile:esm2015": "tsc -p ./tsconfig/tsconfig.esm2015.json",
"lint:tslint": "tslint src/**/*.ts",
"lint:prettier": "prettier --write src/**/*.ts",
"docs": "typedoc --mode file --out ./docs ./src"
},
"author": {
"name": "Daniel Ramos",
"email": "danielramosacosta@hotmail.com"
},
"license": "MIT",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [
"JDownloader"
]
}