-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
40
41
42
43
44
45
46
{
"name": "deep-object-rename",
"version": "1.0.0",
"description": "A Javascript library for deep object renaming by key or value, written in TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "26.0.x",
"@typescript-eslint/eslint-plugin": "3.9.x",
"eslint": "7.6.x",
"eslint-config-airbnb-base": "14.2.x",
"eslint-config-airbnb-typescript": "9.0.x",
"eslint-plugin-import": "2.22.x",
"eslint-plugin-jest": "^23.20.0",
"jest": "26.4.x",
"ts-jest": "26.2.x",
"ts-node": "8.10.x",
"typescript": "3.9.x"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint \"./src/**/*.ts\" --fix",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"test": "jest --config ./jestconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rwaterman/deep-object-rename.git"
},
"keywords": [
"TypeScript",
"Object",
"Deep Rename"
],
"author": "Rick Waterman",
"license": "MIT",
"dependencies": {
"@typescript-eslint/parser": "3.9.x"
}
}