-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 679 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 679 Bytes
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
{
"name": "chatl",
"version": "2.0.1",
"description": "Simple DSL to generate training file for NLU engines",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha './src/**/*.spec.js'",
"wintest": "nyc mocha ./src/**/*.spec.js ./src/*.spec.js",
"report": "nyc report --reporter=text-lcov > coverage.lcov"
},
"repository": "https://github.com/atlassistant/chatl",
"author": "Julien LEICHER",
"license": "GPLv3",
"dependencies": {
"commander": "^2.17.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"nyc": {
"exclude": [
"src/parser.js"
]
},
"bin": "./src/chatl.js"
}