forked from curlconverter/curlconverter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "curlconverter",
"version": "4.0.0-alpha.9",
"description": "convert curl commands to Python, JavaScript, Go, PHP and other languages",
"homepage": "https://github.com/curlconverter/curlconverter",
"author": {
"name": "Nick Carneiro",
"email": "[email protected]",
"url": "http://trillworks.com"
},
"repository": "curlconverter/curlconverter",
"license": "MIT",
"keywords": [
"curl",
"http",
"requests",
"python",
"converter"
],
"type": "module",
"main": "index.js",
"dependencies": {
"cookie": "^0.4.1",
"jsesc": "^3.0.2",
"nunjucks": "^3.2.3",
"query-string": "^7.0.1",
"tree-sitter": "^0.20.0",
"tree-sitter-bash": "^0.19.0",
"web-tree-sitter": "^0.19.4",
"yamljs": "^0.3.0"
},
"devDependencies": {
"standard": "^16.0.4",
"tape": "^5.4.0",
"tree-sitter-cli": "^0.20.1",
"yargs": "^17.3.1"
},
"scripts": {
"test": "tape test.js",
"lint": "standard index.js generators/*.js bin/*.js test.js *.js",
"lint:fix": "standard --fix index.js generators/*.js bin/*.js test.js *.js",
"prepublishOnly": "tree-sitter build-wasm --docker node_modules/tree-sitter-bash"
},
"bin": "bin/cli.js",
"browser": {
"./parser.js": "./browser-parser.js"
}
}