-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.74 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "yardman",
"version": "0.0.11",
"description": "The one that maintains the development yard",
"keywords": [
"autoload",
"cli",
"command",
"development",
"files",
"monitor",
"reload",
"restart",
"start",
"terminal",
"tools",
"watch"
],
"homepage": "https://github.com/agirorn/yardman#readme",
"bugs": {
"url": "https://github.com/agirorn/yardman/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/agirorn/yardman.git"
},
"license": "ISC",
"author": {
"name": "Ægir Örn Símonarson",
"email": "[email protected]",
"url": "https://github.com/agirorn"
},
"files": [
"bin",
"lib"
],
"main": "lib",
"bin": {
"yardman": "bin/yardman.js"
},
"scripts": {
"ci": "yarn lint && yarn coverage",
"dev": "./bin/yardman.js",
"dev:exec": "clear && yarn coverage && npm run lint",
"coverage": "yarn coverage:clean && yarn test",
"coverage:clean": "rm -Rf coverage .test .nyc_output",
"lint": "eslint bin lib spec",
"precommit": "yarn ci",
"prepublishOnly": "yarn ci",
"prepush": "yarn ci",
"test": "nyc mocha --opts .mocharc"
},
"dependencies": {
"chalk": "^3.0.0",
"chokidar": "^3.5.1",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
"lodash.template": "^4.4.0",
"lodash.templatesettings": "^4.1.0",
"pidtree": "^0.6.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"executable": "^4.1.0",
"fs-extra": "^8.0.1",
"husky": "^3.1.0",
"mocha": "^6.1.4",
"nyc": "^15.1.0",
"sort-package-json": "^1.6.0"
},
"engines": {
"node": ">=10"
}
}