-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.59 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
{
"name": "luctst-cli",
"version": "3.5.6",
"description": "Project boilerplate for easily create and share your new cool module. ♻️ ♻️",
"main": "lib/cli.js",
"bin": "lib/cli.js",
"files": [
"lib/**/*"
],
"engines": {
"node": ">= 10.0.0"
},
"eslintIgnore": [
"lib/build/",
"lib/template/"
],
"ava": {
"cache": true
},
"scripts": {
"test": "ava --verbose ./test/*.js",
"test:watch": "ava --watch --verbose --fail-fast ./test/*.js",
"lint": "npx eslint --cache './lib/**/*.js'",
"lint:watch": "esw -w --clear --color --cache './lib/**/*.js'",
"lint:fix": "npx eslint --fix './lib/**/*.js'",
"style": "prettier -c './lib/**/*.js'",
"style:fix": "prettier --c --write './lib/**/*.js'"
},
"repository": {
"type": "git",
"url": "https://www.github.com/luctst/luctst-cli"
},
"keywords": [
"cli",
"node",
"nodejs",
"cli-tool",
"cli-tool-generator"
],
"author": "Tostée Lucas <lucas.tostee@gmail.com> (https://www.lucas-tostee.com)",
"license": "MIT",
"bugs": {
"url": "https://www.github.com/luctst/luctst-cli/issues"
},
"np": {
"yarn": false,
"contents": "lib"
},
"homepage": "https://www.github.com/luctst/luctst-cli",
"devDependencies": {
"ava": "^2.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-watch": "^5.1.2",
"prettier": "^1.19.1"
},
"dependencies": {
"chalk": "^2.4.2",
"inquirer": "^6.5.2",
"meow": "^7.1.1",
"node-fetch": "^2.6.0",
"ora": "^4.1.1",
"replace-in-file": "^4.3.1"
}
}