This repository was archived by the owner on Jun 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.78 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.78 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@asserted/stats",
"description": "Basic stat aggregation library for asserted",
"version": "2.0.0",
"author": "Eric Hacke",
"bugs": {
"url": "https://github.com/assertedio/stats/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/luxon": "^1.22.0",
"lodash": "^4.17.15",
"luxon": "^1.22.2"
},
"devDependencies": {
"@asserted/models": "^6.1.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@ehacke/commitlint-config": "^1.0.2",
"@ehacke/eslint-config": "^1.0.0",
"@ehacke/prettier-config": "^1.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/expect": "^24.3.0",
"@types/lodash": "^4.14.144",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"chai": "^4.2.0",
"class-validator": "^0.11.1",
"commitizen": "^4.0.4",
"commitlint": "^8.3.5",
"cz-conventional-changelog": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-simple-import-sort": "^5.0.2",
"fixpack": "^3.0.5",
"getenv": "^1.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"prettier": "^2.0.2",
"prettier-eslint-cli": "^5.0.0",
"sinon": "^9.0.2",
"ts-node": "^8.8.1",
"tsconfig-paths": "^3.9.0",
"typedoc": "^0.17.3",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.8.3",
"typings": "^2.1.1"
},
"files": [
"dist/**/*.{js,ts,tsbuildinfo}",
"docs/**/*.*"
],
"homepage": "https://github.com/assertedio/stats#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"keywords": [
"asserted",
"library",
"stats"
],
"license": "MIT",
"lint-staged": {
"package.json": [
"fixpack"
],
"*.{js,ts}": [
"prettier-eslint --write",
"eslint --fix"
]
},
"main": "dist/stats.js",
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/scratch.*"
],
"reporter": [
"html",
"text",
"text-summary",
"lcov"
]
},
"peerDependencies": {
"@asserted/models": "^6.0.0",
"class-validator": "^0.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assertedio/stats.git"
},
"scripts": {
"beta": "npm version prerelease && npm publish",
"build": "rm -rf ./dist && tsc -p tsconfig.build.json",
"commit": "git-cz",
"docs": "typedoc --plugin typedoc-plugin-markdown --readme none --exclude \"tests/**/*.+(unit|it).+(ts|js)\"",
"integration": "nyc mocha --recursive -r source-map-support/register -r ts-node/register -r tsconfig-paths/register --use_strict --exit \"tests/**/*.it.+(ts|js)\"",
"lint": "fixpack && prettier-eslint --write && eslint --fix \"**/*.{js,ts}\"",
"major": "npm version major && npm publish",
"minor": "npm version minor && npm publish",
"patch": "npm version patch && npm publish",
"postpublish": "git push",
"prepare": "fixpack",
"prepublishOnly": "npm run build",
"preversion": "npm run lint && npm run test",
"test": "nyc mocha --recursive -r source-map-support/register -r ts-node/register -r tsconfig-paths/register --use_strict --exit \"tests/**/*.+(unit|it).+(ts|js)\"",
"unit": "nyc mocha --recursive -r source-map-support/register -r ts-node/register -r tsconfig-paths/register --use_strict --exit \"tests/**/*.unit.+(ts|js)\""
},
"types": "dist/stats.d.ts"
}