-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.32 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.32 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
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
78
79
80
81
82
83
84
85
86
87
{
"name": "@voxasoftworks/envi",
"version": "1.0.0",
"description": "A simple tool to traverse configuration files and produce environment files",
"bin": "./bin/traverse.mjs",
"exports": "./build/index.js",
"typings": "./build/index.d.ts",
"type": "module",
"repository": "https://github.com/voxa/envi",
"license": "MIT",
"keywords": [
"environment",
"config"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
"test:unit": "c8 ava",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "c8 ava --watch",
"cov": "run-s build test:unit cov:html",
"cov:html": "c8 report --reporter=html",
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"version": "standard-version",
"reset-hard": "git clean -dfx && git reset --hard && yarn",
"prepare-release": "run-s reset-hard test cov:check doc:html version"
},
"engines": {
"node": ">=14.16"
},
"dependencies": {
"cli-meow-help": "^3.1.0",
"meow": "^11.0.0"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/node": "^18.11.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"ava": "^5.0.1",
"c8": "^7.12.0",
"cspell": "^4.1.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.8.4"
},
"files": [
"build",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "build/"
},
"compile": false
}
},
"prettier": {
"singleQuote": true
},
"c8": {
"exclude": [
"**/*.spec.js"
]
}
}