-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.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
{
"name": "@modulify/morph",
"description": "Mapping util",
"license": "MIT",
"version": "0.0.2",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"lint": "eslint --ext .js,.mjs,.ts src tests types",
"prepare": "husky",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"stats": "gzip -c ./dist/index.mjs | wc -c",
"test": "jest --config jest.config.ts",
"test:coverage": "jest --config jest.config.ts --coverage --coverageReporters=lcov"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@jest/types": "^29.6.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^18.15 || ^20.11",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"rollup": "^4.9.6",
"rollup-plugin-delete": "^2.0.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mapper",
"mapping"
],
"contributors": [
"Zaitsev Kirill <[email protected]>"
],
"homepage": "https://github.com/modulify/morph",
"repository": {
"type": "git",
"url": "https://github.com/modulify/morph.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}