-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 2.72 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
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
{
"name": "tiny-types",
"version": "0.0.0-development",
"description": "A tiny library that brings Tiny Types to JavaScript and TypeScript",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf docs lib reports",
"lint": "eslint --ext ts --config .eslintrc.yml .",
"lint:fix": "npm run lint -- --fix",
"test": "nyc --report-dir ./reports/coverage mocha 'spec/**/*.spec.*'",
"compile": "tsc --project tsconfig.json",
"verify": "npm run clean && npm run lint && npm test && npm run compile",
"doc": "esdoc",
"publish:reports": "nyc report --reporter=text-lcov | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jan-molak/tiny-types.git"
},
"keywords": [
"design",
"patterns",
"value",
"objects",
"tiny",
"types",
"ddd",
"domain-driven",
"design"
],
"author": "Jan Molak <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jan-molak/tiny-types/issues"
},
"homepage": "https://jan-molak.github.io/tiny-types/",
"engines": {
"node": "^16 || ^18 || ^20 || ^22"
},
"devDependencies": {
"@types/chai": "4.3.20",
"@types/mocha": "10.0.10",
"@types/node": "22.10.0",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "3.2.12",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"chai": "4.5.0",
"cheerio": "1.0.0",
"commitizen": "4.3.1",
"coveralls": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"esdoc": "1.1.0",
"esdoc-importpath-plugin": "1.0.2",
"esdoc-inject-style-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"esdoc-typescript-plugin": "1.0.1",
"eslint": "8.57.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "56.0.1",
"eslint-plugin-unused-imports": "4.1.4",
"mocha": "10.8.2",
"mocha-testdata": "1.2.0",
"nyc": "17.1.0",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"sinon": "19.0.2",
"sinon-chai": "3.7.0",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"lib",
"node_modules",
"spec",
"src/types"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"text",
"text-summary",
"html"
],
"cache": true,
"all": true
}
}