-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "botmaster-test",
"version": "1.0.1",
"description": "test utility for end to end testing with botmaster",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir -p dist && babel --presets=es2015 src --out-dir dist",
"docs": "documentation readme src/index.js --section=Usage",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/botmasterai/botmaster-test.git"
},
"keywords": [
"botmaster",
"test",
"supertest",
"mocha"
],
"author": "Jonathan R Wickens",
"license": "MIT",
"bugs": {
"url": "https://github.com/botmasterai/botmaster-test/issues"
},
"homepage": "https://github.com/botmasterai/botmaster-test#readme",
"optionalDependencies": {
"botmaster": ">=3.0.0",
"botmaster-telegram": ">=1.0.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"documentation": "^4.0.0-beta.18"
},
"dependencies": {
"debug": "^2.6.0",
"nock": "^9.0.2",
"supertest": "^2.0.1"
}
}