-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.49 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@curveball/core-mini",
"version": "0.0.1",
"description": "Experimental mini core.",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "make build",
"test": "make lint test",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curveball/core-mini.git"
},
"files": [
"package.json",
"README.md",
"dist",
"LICENSE"
],
"keywords": [
"http",
"framework",
"nodejs",
"typescript",
"push"
],
"author": "Evert Pot (https://evertpot.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/curveball/core-mini/issues"
},
"homepage": "https://github.com/curveball/core-mini#readme",
"devDependencies": {
"@types/accepts": "^1.3.5",
"@types/chai": "^4.2.11",
"@types/co-body": "0.0.3",
"@types/mocha": "^7.0.2",
"@types/node": "^10.17.17",
"@types/node-fetch": "^2.5.5",
"@types/sinon": "^7.5.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"node-fetch": "^2.6.0",
"nyc": "^15.0.0",
"sinon": "^9.0.1",
"ts-node": "^8.7.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"types": "dist/",
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"@curveball/http-errors": "^0.3.0",
"accepts": "^1.3.7",
"raw-body": "^2.4.1"
},
"engines": {
"node": ">=9.4"
},
"mocha": {
"require": "ts-node/register",
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
]
}
}