-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
52
{
"name": "vegetacao-nativa-sp-boot",
"version": "1.0.0",
"description": "Robô para leitura do documento de vegetação nativa do Estado de São Paulo",
"scripts": {
"build": "tsc --project .",
"lint": "tslint --project tsconfig.json",
"start": "tsc --project . && node dist/src/index.js --inspect",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lordazzi/vegetacao-nativa-sp-boot.git"
},
"keywords": [
"vegetacao",
"silvestre",
"nativa",
"typescript",
"strict",
"robo",
"boot",
"regex"
],
"author": "Ricardo Azzi Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/lordazzi/vegetacao-nativa-sp-boot/issues"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"homepage": "https://github.com/lordazzi/vegetacao-nativa-sp-boot#readme",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "14.14.41",
"chai": "^4.3.4",
"husky": "^1.0.0-rc.13",
"mocha": "^9.1.0",
"nyc": "^15.1.0",
"ts-node": "^10.2.1",
"tslint": "6.1.3",
"typescript": "4.2.4"
},
"dependencies": {
"log4js": "6.3.0"
}
}