-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 KB
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
{
"private": false,
"main": "index.js",
"bin": "bin.js",
"version": "1.0.0",
"name": "@levakorg/init",
"description": "File environment levakorg org's",
"author": "levakorg authors <levakorg@gmail.com>",
"homepage": "https://github.com/levakorg/init",
"repository": "https://github.com/levakorg/init",
"bugs": "https://github.com/levakorg/init/issues",
"license": "MIT",
"keywords": [
"file-environment",
"create-file-environment"
],
"files": [
"scripts",
"utils",
"constants",
"LICENSE",
"README.md",
"TODO.md",
"CHANGELOG.md",
"bin.js",
"index.js"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prettier": "prettier check .",
"prettier:fix": "prettier --write .",
"eslint": "eslint . --ext .json,.cjs,.mjs,.js,.ts,.jsx,.tsx,.vue,.svelte",
"eslint:fix": "eslint . --ext .json,.cjs,.mjs,.js,.ts,.jsx,.tsx,.vue,.svelte --fix",
"format": "yarn prettier:fix && yarn eslint:fix"
},
"dependencies": {
"colors": "^1.4.0"
},
"devDependencies": {
"@levakorg/eslint-config": "^1.0.1",
"@levakorg/prettier-config": "^1.0.0",
"eslint": "^8.26.0",
"prettier": "^2.7.1"
}
}