-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1007 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
35
36
37
38
{
"name": "cmd-parser",
"version": "1.0.0",
"description": "Parses and executes commands from chat messages.",
"author": {
"name": "Emmanuelle"
},
"contributors": [
{
"name": "Tashi"
}
],
"license": "UNLICENSED",
"private": true,
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wolfstuff/cmd-parser.git"
},
"bugs": {
"url": "https://github.com/wolfstuff/cmd-parser/issues"
},
"homepage": "https://github.com/wolfstuff/cmd-parser#readme",
"scripts": {
"ava": "nyc --reporter=lcov --reporter=text-summary ava --verbose test/**/*.test.js",
"eslint": "eslint src/**/*.js",
"test": "npm run eslint && npm run ava"
},
"engines": {
"node": "^12.18.2"
},
"devDependencies": {
"ava": "^3.10.1",
"eslint": "^7.5.0",
"eslint-plugin-jsdoc": "^30.0.3",
"nyc": "^15.1.0"
}
}