-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "yaml-to-env",
"version": "4.2.3",
"description": "Takes a YAML configuration file and ads it to Node's process.env",
"author": {
"name": "Doru Moraru",
"email": "[email protected]",
"url": "https://www.doru-moraru.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"postbuild": "copyfiles -u 1 src/lib/**/* dist/",
"prepublishOnly": "npm run test",
"prepare": "npm run build",
"test:current": "ts-node-dev test/test.ts",
"test:legacy": "ts-node-dev test/test-legacy.ts",
"test": "echo '\nBuilding...\n' && npm run build && echo '\nTesting Legacy version...\n' && npm run test:legacy && echo '\nTesting current version...\n' && npm run test:current",
"dev": "ts-node-dev test/test.ts"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dorumrr/npmjs-yaml-to-env.git"
},
"bugs": {
"url": "https://github.com/dorumrr/npmjs-yaml-to-env/issues"
},
"keywords": [
"yaml",
"env",
"converter",
"process.env",
"google yaml",
"json"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^16.11.3",
"copyfiles": "^2.4.1",
"eslint": "^8.0.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"license": "MIT"
}