-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.65 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.65 KB
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
{
"name": "yup-decorator",
"version": "2.0.0",
"description": "Decorators for yup",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"doc": "typedoc ./src",
"watch": "tsc -w",
"test:coverage": "nyc mocha --config test/.mocharc.json",
"publish:coverage": "codecov",
"publish:doc": "surge docs $npm_package_config_surgeDoc",
"test": "mocha --watch --config test/.mocharc.json",
"lint": "tslint -p .",
"release": "semantic-release",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/vdtn359/yup-decorator"
},
"peerDependencies": {
"yup": "^0.27.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "8.0.0",
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@semantic-release/changelog": "3.0.4",
"@semantic-release/commit-analyzer": "6.2.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.9",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.7",
"@types/node": "12.6.2",
"@types/yup": "0.26.22",
"chai": "4.2.0",
"codecov": "^3.8.1",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "3.0.0",
"husky": "3.0.1",
"mocha": "^8.2.1",
"nyc": "14.1.1",
"prettier": "1.18.2",
"semantic-release": "^17.3.1",
"source-map-support": "0.5.12",
"surge": "^0.21.7",
"ts-node": "8.3.0",
"tsconfig-paths": "3.8.0",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typedoc": "^0.20.14",
"typescript": "^4.1.3",
"yup": "0.27.0"
},
"files": [
"dist",
"index.d.ts"
],
"husky": {
"hooks": {
"prepare-commit-msg": "test -e .git/MERGE_HEAD || exec < /dev/tty && git cz --hook",
"commit-msg": "test -e .git/MERGE_HEAD || commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "test -e .git/MERGE_HEAD || npm run lint && npm run test:coverage"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"surgeDoc": "luxuriant-sneeze.surge.sh"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Tuan Nguyen <vdtn359@gmail.com>",
"license": "ISC",
"dependencies": {
"reflect-metadata": "0.1.13"
}
}