-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 943 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
{
"name": "yle-api",
"version": "1.1.1",
"description": "",
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "tslint --fix -e 'src/__mocks__/**/*.ts' -p tsconfig.json -c tslint.json 'src/**/*.ts'",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"bin": {
"yle-api": "./bin/yle-api"
},
"author": "Jaakko Salonen",
"repository": {
"type": "git",
"url": "https://github.com/jsalonen/yle-api.git"
},
"license": "ISC",
"dependencies": {
"commander": "^5.0.0",
"node-fetch": "^2.6.0",
"urijs": "^1.19.2"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/node": "^12.11.2",
"@types/node-fetch": "^2.5.2",
"@types/urijs": "^1.19.4",
"coveralls": "^3.0.7",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
}
}