-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 865 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
{
"name": "typescript-jest-project-scaffold",
"description": "A simple baseline to develop js libs with TypeScript and Jest",
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^22.1.3",
"jest": "^22.4.2",
"ts-jest": "^22.0.4",
"typescript": "^2.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andregoncalves/typescript-jest-project-scaffold.git"
},
"author": {
"name": "Andre Goncalves",
"email": "[email protected]",
"url": "https://andregoncalves.com"
},
"bugs": {
"url": "https://github.com/andregoncalves/typescript-jest-project-scaffold"
},
"homepage": "https://github.com/andregoncalves/typescript-jest-project-scaffold"
}