This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
forked from 0xcaff/dialogflow-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.74 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
72
73
74
{
"name": "dialogflow-cli",
"version": "1.0.4",
"bin": {
"dialogflow-cli": "./lib/bin/index.js",
"dialogflow": "./lib/bin/index.js"
},
"description": "A command line tool to import and export a Dialogflow agent.",
"main": "index.js",
"repository": "[email protected]:0xcaff/dialogflow-cli.git",
"author": "Martin Charles <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.0.0",
"archiver": "^3.0.0",
"commander": "^2.20.0",
"dialogflow": "^0.10.1",
"raw-body": "^2.4.0",
"unzipper": "^0.10.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^8.2.2",
"eslint": "^4.18.1",
"prettier": "^1.10.2"
},
"engines": {
"node": ">=8.1.0"
},
"config": {
"prettierFiles": "src/{*,**/*}.{js,json} README.md"
},
"scripts": {
"fix-style": "prettier --write $npm_package_config_prettierFiles",
"check-style":
"prettier --list-different $npm_package_config_prettierFiles",
"lint": "eslint --ext .js src/",
"build": "babel -d lib/ src/",
"check-all": "yarn lint && yarn check-style",
"prepublishOnly": "yarn check-all",
"prepublish": "yarn build"
},
"babel": {
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"helpers": false,
"regenerator": true
}
]
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
},
"eslintConfig": {
"extends": "eslint:recommended",
"parser": "babel-eslint",
"env": {
"node": true
}
}
}