-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 927 Bytes
/
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
{
"name": "filmweb-api",
"version": "0.0.0",
"description": "API library for filmweb.pl",
"main": "lib/filmweb-api.js",
"typings": "lib/filmweb-api.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest"
},
"keywords": [
"Filmweb"
],
"author": "Adam Slaski <[email protected]>",
"repository": {
"type": "git",
"url": "bitbucket:adasla/filmweb-api"
},
"license": "MIT",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testURL": "https://ssl.filmweb.pl"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"jest": "^23.6.0",
"ts-jest": "^23.1.4",
"typescript": "^3.0.3"
},
"dependencies": {
"axios": "^0.18.0",
"ts-md5": "^1.2.4"
}
}