-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "bigfive-bot",
"version": "1.0.0",
"description": "a bot for taking big five tests",
"main": "index.js",
"scripts": {
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"deploy": "npm test && now && now alias",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Alheimsins/bigfive-bot.git"
},
"author": "Geir Gåsodden <geir.gasodden@pythonia.no> (/~https://github.com/zrrrzzt)",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/Alheimsins/bigfive-bot/issues"
},
"homepage": "/~https://github.com/Alheimsins/bigfive-bot#readme",
"devDependencies": {
"ava": "4.3.1",
"coveralls": "3.1.1",
"nyc": "15.1.0",
"standard": "17.0.0"
},
"dependencies": {
"botbuilder": "4.16.0",
"restify": "8.6.1"
},
"engines": {
"node": ">=10.15.0"
}
}