-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 907 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
{
"name": "@ifood/test-gitlab-pipeline",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/batatinha-delivery/test-gitlab-pipeline.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/batatinha-delivery/test-gitlab-pipeline/issues"
},
"homepage": "https://github.com/batatinha-delivery/test-gitlab-pipeline#readme",
"dependencies": {
"jest": "27.2.4",
"ts-jest": "27.0.5",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "^14.17.16"
},
"scripts": {
"lint": "tslint --project tsconfig.json",
"prebuild": "rm -rf dist",
"build": "tsc",
"test": "jest --detectOpenHandles",
"prepare": "npm run build"
}
}