This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "@wb/core",
"description": "A NodeJS project written in TypeScript 🙏",
"version": "0.0.1",
"license": "MIT",
"main": "dist/index.js",
"author": {
"name": "Weburger Technology",
"url": "https://github.com/weburger"
},
"homepage": "https://github.com/weburger/core",
"repository": {
"type": "git",
"url": "https://github.com/weburger/core.git"
},
"engines": {
"node": ">=8.0.0",
"yarn": ">=1.3.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'"
},
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"jest": "^23",
"rimraf": "^2",
"@types/jest": "^23",
"@types/node": "^10",
"ts-jest": "^23",
"typedoc": "^0.13.0",
"typescript": "^3",
"@semantic-release/changelog": "^3",
"@semantic-release/git": "^7",
"husky": "^1",
"lint-staged": "^8",
"semantic-release": "^15",
"@commitlint/cli": "^7",
"@commitlint/config-conventional": "^7",
"@endemolshinegroup/cz-github": "^1",
"@endemolshinegroup/prettier-config": "^1",
"@endemolshinegroup/tslint-config": "^1",
"commitizen": "^3",
"prettier": "^1",
"tslint": "^5",
"tslint-config-prettier": "^1",
"tslint-eslint-rules": "^5"
},
"types": "dist/index.d.ts"
}