-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.41 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
{
"name": "@mugan86/openweather-api",
"version": "2.1.4",
"description": "Openweather Api Project in Node Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha",
"build": "tsc",
"watch": "tsc -w",
"compodoc": "./node_modules/.bin/compodoc -p tsconfig.doc.json --hideGenerator -w -o -s --customFavicon favicon.ico",
"create-doc": "./node_modules/.bin/compodoc -p tsconfig.doc.json --hideGenerator --customFavicon favicon.ico",
"cover": "istanbul cover node_modules/mocha/bin/_mocha test/*.js -- -R spec",
"doc-publish": "npm run create-doc && firebase deploy",
"publish-firebase": "npm publish && npm run doc-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npm-js-ts-angular-modules-course/training-node-ts-openweather-api.git"
},
"keywords": [
"openweather",
"api"
],
"author": "Anartz Mugika Ledo <mugan86@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/npm-js-ts-angular-modules-course/training-node-ts-openweather-api/issues"
},
"homepage": "https://github.com/npm-js-ts-angular-modules-course/training-node-ts-openweather-api#readme",
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.7",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nock": "^10.0.2"
}
}