forked from sigoden/apitest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.6 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
{
"name": "@sigodenjs/apitest",
"description": "Apitest is declarative api testing tool with JSON-like DSL.",
"version": "0.13.0",
"bin": {
"apitest": "dist/bin.js"
},
"keywords": [
"api",
"testing",
"apitest",
"ci"
],
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/sigoden/apitest",
"repository": {
"type": "git",
"url": "git+https://github.com/sigoden/apitest.git"
},
"files": [
"dist",
"jslib"
],
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/sigoden/apitest/issues",
"author": "Sigoden Huang <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext js --ext ts",
"dev": "ts-node src/bin.ts",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"test": "jest",
"prepublishOnly": "npm run -s clean && npm run -s build"
},
"dependencies": {
"@sigodenjs/fake": "^0.2.0",
"@types/lodash": "^4.14.182",
"axios": "^0.27.2",
"axios-cookiejar-support": "^4.0.2",
"chalk": "^4",
"form-data": "^4.0.0",
"hpagent": "^1.0.0",
"jsona-js": "^0.5.1",
"lodash": "^4.17.21",
"tough-cookie": "^4.0.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"jest": "^28.1.2",
"pkg": "^5.7.0",
"rimraf": "^3.0.2",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"pkg": {
"scripts": "dist/**/*",
"outputPath": "release"
}
}