-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 1.9 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
{
"name": "node-yaml-config",
"description": "Write your configuration files for node.js in yaml",
"version": "1.0.0",
"author": "Johann-Michael Thiebaut <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"directories": {
"lib": "src",
"example": "examples"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "yarn prebuild && tsc -p ./tsconfig.build.json",
"build:watch": "tsc --watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"dependencies": {
"js-yaml": "^4.1.0",
"node.extend": "^2.0.2"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.3",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"homepage": "https://github.com/leafty/node-yaml-config",
"repository": {
"type": "git",
"url": "https://github.com/leafty/node-yaml-config.git"
},
"bugs": {
"url": "https://github.com/leafty/node-yaml-config/issues"
},
"keywords": [
"yaml",
"config"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}