-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.48 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.48 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
{
"name": "object-creator",
"version": "1.1.1",
"description": "A utility to create nested objects based on string paths with TypeScript support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepare": "npm run build",
"release:patch": "npm run test && npm run lint && npm version patch -m \"fix: handle empty remainingPath and bump version to %s\" && git push origin main --follow-tags && npm publish",
"release:minor": "npm run test && npm run lint && npm version minor -m \"feat: add new features and bump version to %s\" && git push origin main --follow-tags && npm publish",
"release:major": "npm run test && npm run lint && npm version major -m \"feat!: introduce breaking changes and bump version to %s\" && git push origin main --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saeedghofrani/object-creator.git"
},
"keywords": [
"object",
"creator",
"utility",
"typescript",
"npm"
],
"author": "Saeed Ghofrani <sa.ghofraniivari@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/saeedghofrani/object-creator/issues"
},
"homepage": "https://github.com/saeedghofrani/object-creator#readme",
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}