-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 948 Bytes
/
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
{
"name": "liz",
"version": "0.0.1",
"description": "A lovely bot for the Larachat community",
"main": "index.js",
"scripts": {
"postinstall": "typings install",
"build": "tsc",
"test": "npm run build && ./node_modules/.bin/mocha --opts mocha.opts",
"coverage": "npm run build && node ./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha -- --opts mocha.opts && ./node_modules/.bin/remap-istanbul -i ./coverage/coverage.json -o ./coverage/html-report -t html"
},
"author": "Thomas Ruiz <[email protected]>",
"license": "MIT",
"dependencies": {
"@slack/client": "^3.6.0",
"typescript": "^1.8.10"
},
"devDependencies": {
"codecov": "^1.0.1",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"remap-istanbul": "^0.6.4",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"ts-node": "^1.3.0",
"typescript": "^1.8.10",
"typings": "^1.3.3"
}
}