-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 953 Bytes
/
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
{
"name": "meow-help",
"version": "0.3.0",
"description": "Generate help text for meow.",
"main": "./dist/index.js",
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir dist",
"lint:js": "./node_modules/.bin/eslint ./src/**/*.js",
"test": "npm run lint:js && ava"
},
"keywords": [
"meow",
"cli",
"help",
"javascript",
"command-line",
"nodejs"
],
"repository": "github:maartenbrakkee/meow-help",
"author": "Maarten Brakee <maarten@zeroten.nl>",
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"chalk": "^2.4.2",
"cli-table3": "^0.5.1",
"core-js": "^3.1.0",
"normalize-package-data": "^2.5.0",
"read-pkg-up": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"ava": "^1.4.1",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"nyc": "^14.1.1"
}
}