-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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": "@t2ee/restful",
"version": "1.0.3",
"description": "restful",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -p src/tsconfig.json",
"build-test": "rm -rf test-dist/ && tsc -p src/tsconfig.test.json",
"test": "npm run build-test && ava test-dist/*.test.js",
"coverage": "npm run build-test && nyc ava -- test-dist/*.test.js"
},
"author": "Qiaosen Huang",
"license": "Apache-2.0",
"peerRdependencies": {
"@t2ee/core": "0.1.x",
"typescript": "2.x",
"reflect-metadata": "^0.1.10"
},
"dependencies": {
"@types/superagent": "^3.5.3",
"superagent": "^3.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t2ee/restful.git"
},
"keywords": [
"restful",
"http",
"request",
"typescript",
"t2ee",
"rest",
"superagent",
"axios"
],
"bugs": {
"url": "https://github.com/t2ee/restful/issues"
},
"homepage": "https://github.com/t2ee/restful#readme",
"devDependencies": {
"ava": "^0.21.0",
"koa": "^2.3.0",
"koa-body": "^2.3.0",
"nyc": "^11.1.0"
},
"directories": {
"doc": "docs"
}
}