-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 KB
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
44
45
46
47
48
49
50
{
"name": "botmaster-session-ware",
"version": "1.1.1",
"description": "botmaster session ware for storing context",
"main": "dist/index.js",
"scripts": {
"pretest": "yarn build",
"test": "istanbul cover _mocha -- --recursive dist/tests",
"tests": "mocha --recursive src/tests",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "mkdir -p dist && babel --presets=es2015 src --out-dir dist",
"docs": "documentation readme src/index.js --section=\"API\"",
"prepublish": "yarn build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/botmasterai/botmaster-session-ware.git"
},
"keywords": [
"botmaster",
"chat",
"bots",
"session",
"context"
],
"author": "Jonathan R Wickens",
"license": "MIT",
"bugs": {
"url": "https://github.com/botmasterai/botmaster-session-ware/issues"
},
"peerDependencies": {
"botmaster": "^3.0.7"
},
"homepage": "https://github.com/botmasterai/botmaster-session-ware#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"documentation": "^4.0.0-beta.18",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"should": "^11.2.0"
},
"dependencies": {
"debug": "^2.6.0",
"ramda": "^0.23.0"
}
}