-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 804 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 804 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
39
{
"name": "simplemkfile",
"version": "1.0.8",
"description": "Add a file and its tests",
"main": "cli.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"ci:lint": "eslint . -c .eslintrc.json",
"smf": "node ./lib/cli.js"
},
"files": [
"lib/"
],
"keywords": [
"CLI",
"Lightweight",
"Fast",
"Small Bundle",
"Fun",
"File Maker",
"Tool"
],
"repository": {
"url": "https://github.com/AlexGaiser/addfiles-cli"
},
"author": "Alex Gaiser",
"license": "ISC",
"bin": {
"simplemkfile": "lib/cli.js",
"smf": "lib/cli.js"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1"
}
}