-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 980 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
45
46
{
"name": "jweb-utils",
"version": "0.0.7",
"description": "utils for jweb include http, md5, hash etc.",
"main": "build/index.js",
"typings": "types/index.d.ts",
"files": [
"build/**/*.js",
"types/*.d.ts"
],
"scripts": {
"build": "tsc",
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7kgame/jweb-utils.git"
},
"keywords": [
"utils",
"jweb",
"http",
"md5",
"hash"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/7kgame/jweb-utils/issues"
},
"homepage": "https://github.com/7kgame/jweb-utils#readme",
"dependencies": {
"request": "^2.88.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/node": "^12.7.5",
"@types/request": "^2.48.1",
"@types/xml2js": "^0.4.4"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.0"
}
}