forked from krismuniz/slash-command
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 988 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 988 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
29
30
31
32
33
34
{
"name": "slash-command",
"version": "0.0.52",
"description": "Simple slash command parsing module",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"cover": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec test/*",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krismuniz/slash-command.git"
},
"keywords": [
"slash",
"command",
"subcommands",
"parsing",
"string"
],
"author": "Kristian Muñiz <kristian.muniz@upr.edu> (https://www.krismuniz.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/krismuniz/slash-command/issues"
},
"homepage": "https://github.com/krismuniz/slash-command#readme",
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"istanbul": "^0.4.1",
"mocha": "^2.3.4"
}
}