-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "cdk8s-config",
"version": "0.0.9",
"description": "Add configuration features using environment variables.",
"homepage": "https://github.com/kumboleijo/cdk8s-config",
"repository": {
"type": "git",
"url": "https://github.com/kumboleijo/cdk8s-config"
},
"main": "lib/index.js",
"scripts": {
"build": "rm -rf ./lib && tsc",
"test": "echo xthere are no tests specified",
"examples": "yarn run build && ts-node ./examples/1-basic/",
"docs:serve": "yarn run build && documentation serve ./lib/index.js",
"docs:build": "yarn run build && documentation build ./lib/index.js -f html -o docs",
"postversion": "yarn run docs:build && git commit -i ./docs/* -m 'update documentation to newest version' && npm publish"
},
"files": [
"lib/**/*"
],
"keywords": [
"cdk8s",
"config"
],
"author": "Jonas Schmitt <jonas.schmitt@me.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.0.5",
"documentation": "^13.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"brototype": "^0.0.6",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"js-yaml": "^3.13.1"
}
}