-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "curl-parser-js",
"description": "Parse curl commands to json object",
"version": "0.0.3",
"keywords": [
"parse-curl",
"curl",
"curl-parser-js"
],
"scripts": {
"build": "webpack -p --config webpack.config.js",
"start": "webpack --config webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/marudhupandiyang/curl-parser-js"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {},
"main": "dist/parse-curl-js.js",
"module": "src/index.js",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-import": "^2.8.0",
"path": "^0.12.7",
"webpack": "^3.9.1",
"webpack-visualizer-plugin": "^0.1.11"
}
}