-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 977 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
36
37
38
39
40
41
42
43
44
{
"name": "oatts",
"version": "0.0.1",
"description": "Open API TypeScript Tools",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"start": "jest --watch",
"build": "tsc",
"test": "jest --coverage",
"coverage": "yarn test && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/david-luna/oatts.git"
},
"keywords": [
"open",
"api",
"swagger",
"tools"
],
"author": "David Luna",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/david-luna/oatts/issues"
},
"homepage": "/~https://github.com/david-luna/oatts#readme",
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.12.0",
"coveralls": "^3.0.3",
"jest": "^24.5.0",
"ts-jest": "^24.0.0",
"typescript": "^3.3.4000"
},
"dependencies": {
"injection-js": "^2.2.1",
"reflect-metadata": "^0.1.13"
}
}