-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
{
"author": {
"name": "netop://ウエハ",
"url": "https://webb.page"
},
"dependencies": {
"@webb/console": "^2021.5.28",
"app-root-path": "^3.0.0",
"env-smart": "^2.2.5"
},
"description": "A smarter .env",
"devDependencies": {
"@inc/eslint-config": "^2019.10.22",
"@webb/config-nyc": "^2021.5.28",
"@webb/config-prettier": "^2021.5.28",
"@webb/test": "^2021.5.28",
"chronver": "^2020.6.18",
"del-cli": "^4.0.1",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.7.0",
"tsc-watch": "^4.6.0",
"typescript": "^4.6.2",
"updates": "^13.0.3"
},
"homepage": "https://github.com/NetOpWibby/vne",
"keywords": [
"conf",
"config",
"configuration",
"env",
"environment",
"parse",
"settings"
],
"license": "MIT",
"main": "dist/index.js",
"name": "vne",
"prettier": "@webb/config-prettier",
"repository": {
"type": "git",
"url": "https://github.com/NetOpWibby/vne"
},
"scripts": {
"build": "npm run cleanup && tsc",
"cleanup": "del './dist'",
"debug": "tsc-watch src/index.ts --outDir ./dist --onSuccess 'node ./dist/index.js'",
"increment": "chronver --increment package",
"pre-commit": "npm run build && npm run pretty && npm run increment && git add -A :/",
"pretty": "prettier --write 'dist/**/*.js' 'dist/**/*.ts'",
"test": "run-s test:*",
"test:dependencies": "updates --update ./",
"test:lint": "tsc",
"test:lint-assert": "ts-node test/index.ts",
"test:lint-coverage": "nyc npm run test:lint-assert"
},
"types": "dist/index.d.ts",
"version": "2022.03.09"
}