-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "micromand",
"version": "1.1.1",
"description": "Minimal command engine",
"main": "index.js",
"scripts": {
"test": "mocha --color 'test/**/*.test.js'",
"lint": "eslint **/*.js",
"lint-fix": "eslint **/*.js --fix",
"coverage": "nyc --reporter=lcov npm run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"author": "Thomas Dubosc (http://repraze.com)",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"husky": "^2.7.0",
"mocha": "^6.2.3",
"nyc": "^14.1.1"
},
"dependencies": {
"map-tree": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/repraze-org/micromand.git"
},
"keywords": [
"command"
],
"bugs": {
"url": "https://github.com/repraze-org/micromand/issues"
},
"homepage": "https://github.com/repraze-org/micromand#readme"
}