-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.23 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
{
"name": "auto-camel-case-with-rules",
"version": "1.0.5",
"description": "This utils allows to change object props to camelcase with optional custom property names. The returned object has correct type.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"test": "echo Tests",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": ["typescript", "camelcase", "map", "object", "custom", "rules", "rename", "props", "properties"],
"author": "Jan Zoń",
"repository": "https://github.com/question44/auto-camel-case-with-rules.git",
"license": "ISC",
"files": [
"lib/**/*",
"types/**/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"typescript": "^4.2.4"
},
"dependencies": {
"camelcase": "^6.2.0",
"ts-toolbelt": "^9.6.0"
}
}