-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.63 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
{
"name": "@app-config/cli",
"description": "CLI for @app-config",
"version": "2.6.0",
"license": "MPL-2.0",
"author": {
"name": "Launchcode",
"email": "admin@lc.dev",
"url": "https://lc.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/launchcodedev/app-config.git"
},
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!**/*.tsbuildinfo",
"!**/*.test.*"
],
"bin": {
"ac": "dist/index.js",
"app-config": "dist/index.js",
"app-config-secret-agent": "dist/start-secret-agent.js"
},
"scripts": {
"start": "node ./dist/index.js",
"build": "tsc -b",
"build:es": "tsc -b tsconfig.es.json",
"clean": "rm -rf dist *.tsbuildinfo",
"lint": "eslint src",
"fix": "eslint --fix src",
"test": "jest",
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
},
"dependencies": {
"@app-config/config": "^2.6.0",
"@app-config/core": "^2.6.0",
"@app-config/encryption": "^2.6.0",
"@app-config/generate": "^2.6.0",
"@app-config/logging": "^2.6.0",
"@app-config/node": "^2.6.0",
"@app-config/meta": "^2.6.0",
"@app-config/schema": "^2.6.0",
"@app-config/utils": "^2.6.0",
"ajv": "7",
"clipboardy": "2",
"common-tags": "1",
"execa": "5",
"fs-extra": "9",
"json-schema-ref-parser": "9",
"yargs": "16"
},
"devDependencies": {
"@types/common-tags": "1",
"@types/fs-extra": "9"
},
"prettier": "@lcdev/prettier",
"jest": {
"preset": "@lcdev/jest",
"setupFilesAfterEnv": [
"<rootDir>/test-setup.js"
]
}
}