-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@ghii/envs-loader",
"version": "1.1.0",
"description": "A Funny envs loader for ghii configuration manager ",
"maintainers": [
{
"name": "Irene La Bollita",
"email": "[email protected]"
}
],
"author": "Irene La Bollita <[email protected]>",
"keywords": [
"node",
"config"
],
"main": "dist/lib/envs-loader.js",
"types": "dist/types/envs-loader.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/iad-os/ghii-envs-loader.git"
},
"private": false,
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"prebuild": "rimraf dist",
"build": "tsc",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll ",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"src/__test__/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"devDependencies": {
"@ghii/ghii": "^1.1.0",
"@types/jest": "^29.4.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash.chunk": "^4.2.7",
"@types/lodash.set": "^4.3.7",
"@types/lodash.topairs": "^4.3.7",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.0",
"jest-config": "^29.4.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"dependencies": {
"lodash.chunk": "^4.2.0",
"lodash.set": "^4.3.2",
"lodash.topairs": "^4.3.0"
}
}