-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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": "wsdl-typegen",
"version": "1.0.0-alpha.10",
"main": "index.js",
"license": "MIT",
"bin": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"dev": "npm-run-all -p dev:*",
"dev:templates": "nodemon --watch src/templates/flow -e hbs --exec yarn build:templates",
"dev:run": "nodemon --watch src -e js,hbs src/dev.js generate 'test/**/*.wsdl'",
"build": "npm-run-all build:clean build:templates build:lib",
"build:clean": "rimraf lib",
"build:templates": "handlebars src/templates/flow -c handlebars/runtime -e hbs -f src/templates/flow.js",
"build:lib": "babel src -d lib --ignore src/dev.js",
"prepublishOnly": "yarn build",
"test": "node src/dev.js generate 'test/**/*.wsdl' && flow ."
},
"dependencies": {
"camelcase": "^5.0.0",
"chokidar": "^3",
"commander": "^4",
"glob": "^7.1.3",
"handlebars": "^4.0.12",
"prettier": "^1.16.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^6",
"eslint-config-airbnb-base": "^14",
"eslint-plugin-flowtype": "^4",
"eslint-plugin-import": "^2.14.0",
"flow-bin": "^0.112.0",
"flow-typed": "^2.5.1",
"nodemon": "^2",
"npm-run-all": "^4.1.5",
"rimraf": "^3"
}
}