-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "proyecto-2c-crono",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha",
"watch": "tsc -w",
"compodoc": "npx compodoc -p ./tsconfig.doc.json",
"firebase.deploy": "firebase deploy",
"publish.content": "npm run compodoc && npm run firebase.deploy",
"cover": "istanbul cover node_modules/mocha/bin/_mocha test/*.js -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npm-js-ts-angular-modules-course/proyecto-2c-crono.git"
},
"keywords": [],
"author": "Anartz Mugika Ledo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/npm-js-ts-angular-modules-course/proyecto-2c-crono/issues"
},
"homepage": "https://github.com/npm-js-ts-angular-modules-course/proyecto-2c-crono#readme",
"dependencies": {
"rxjs": "^6.4.0"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.8",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
}
}