forked from kubescape/node-yamlparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 883 Bytes
/
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
{
"name": "@kubescape/yamlparse",
"version": "0.1.0",
"description": "Parse yaml configuration",
"publisher": "kubescape",
"author": {
"name": "David Delarosa",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Amir Malka",
"email": "[email protected]"
}
],
"main": "out/src/index.js",
"files": [
"out/src/index.d.ts"
],
"scripts": {
"compile": "tsc -watch -p ./",
"test": "tsc -p ./ && tape -r source-map-support/register 'out/test/**/*.js' | tap-spec",
"prepare": "tsc -p ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kubescape/node-yamlparse.git",
"directory": "."
},
"keywords": [
"yaml",
"kubernetes"
],
"license": "Apache-2.0",
"dependencies": {
},
"devDependencies": {
"@types/node": "^13.13.4",
"typescript": "^3.8.3"
}
}