-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
{
"name": "r2curl",
"version": "0.2.4",
"description": "Node.js Request Wrapper (axios, fetch, ..) to cURL Command String",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "npx jest --coverage",
"test:log": "npx cross-env DEBUG=r2curl:* npx jest",
"test:watch": "npx cross-env DEBUG=r2curl:tc:* npx jest --watch",
"lint": "npx tslint -c ./tslint.json \"./src/**/*.ts\"",
"clean": "npm run clean:dist && npm run clean:artifact",
"clean:artifact": "rm -rf ./*.tgz && true",
"clean:dist": "rm -rf dist && true",
"build": "npm run lint && npm run clean:dist && tsc",
"prepack": "npm run clean && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uyu423/r2curl.git"
},
"keywords": [
"curl",
"axios",
"debug"
],
"author": "Yowu Yu <me@yowu.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/uyu423/r2curl/issues"
},
"homepage": "https://github.com/uyu423/r2curl#readme",
"dependencies": {
"debug": "^4.1.1"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.31",
"@types/shelljs": "^0.8.7",
"axios": "^0.19.2",
"cross-env": "^5.2.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"shelljs": "^0.8.3",
"ts-jest": "^24.3.0",
"ts-loader": "^5.4.5",
"ts-node": "^8.8.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.(ts|tsx)"
]
}
}