-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "dialogflow-vis",
"version": "0.2.0",
"description": "Dialogflow Agent Visualization Tool",
"main": "dist/dialogflow-vis.js",
"engines": {
"node": ">=6.0.0"
},
"bin": {
"dfvis": "./dist/dialogflow-vis.js"
},
"scripts": {
"build": "tsc && cp src/codegen/*.html dist/codegen",
"clean": "rm -rf dist",
"test": "npm run build && mocha -r ts-node/register test/**/*.ts"
},
"keywords": [
"Dialogflow",
"Actions-on-Google"
],
"author": "Aza Tulepbergenov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atulep/dialogflow-vis.git"
},
"bugs": {
"url": "https://github.com/atulep/dialogflow-vis/issues"
},
"homepage": "https://github.com/atulep/dialogflow-vis",
"devDependencies": {
"typescript": "^2.7.2",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"ts-node": "^6.0.5"
},
"dependencies": {
"@types/node": "^9.4.6",
"argparse": "^1.0.10"
}
}