This repository has been archived by the owner on Oct 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
73 lines (73 loc) · 1.98 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": "@endemolshinegroup/cosmiconfig-typescript-loader",
"description": "A TypeScript loader for Cosmiconfig",
"version": "3.0.2",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"cosmiconfig",
"cosmiconfig-loader",
"typescript"
],
"author": {
"name": "Endemol Shine Group Technology",
"url": "https://github.com/EndemolShineGroup"
},
"files": [
"dist"
],
"homepage": "https://github.com/EndemolShineGroup/cosmiconfig-typescript-loader",
"repository": {
"type": "git",
"url": "https://github.com/EndemolShineGroup/cosmiconfig-typescript-loader.git"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"pretest": "rimraf coverage/",
"test": "jest --no-cache --coverage",
"prebuild": "rimraf dist/",
"build": "tsc",
"build:docs": "rimraf docs/api && typedoc --out docs/api --target es6 --theme minimal --mode file src",
"semantic-release": "semantic-release",
"commit": "git-cz",
"lint": "tslint -p tsconfig.json -t codeFrame 'src/**/*.ts' -e 'src/**/*.spec.ts'"
},
"peerDependencies": {
"cosmiconfig": ">=6"
},
"dependencies": {
"lodash.get": "^4",
"make-error": "^1",
"ts-node": "^9",
"tslib": "^2"
},
"devDependencies": {
"@commitlint/cli": "^11",
"@commitlint/config-conventional": "^11",
"@endemolshinegroup/cz-github": "^2",
"@endemolshinegroup/prettier-config": "^1",
"@endemolshinegroup/tslint-config": "^1",
"@semantic-release/changelog": "^5",
"@semantic-release/git": "^9",
"@types/jest": "^26",
"@types/lodash.get": "^4",
"@types/node": "10.*",
"commitizen": "^4",
"cosmiconfig": "^7",
"husky": "^4",
"jest": "^26",
"lint-staged": "^10",
"prettier": "^2",
"rimraf": "^3",
"semantic-release": "^17",
"ts-jest": "^26",
"tslint": "^5",
"tslint-config-prettier": "^1",
"tslint-eslint-rules": "^5",
"typedoc": "^0.19.1",
"typescript": "^3"
}
}