-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 4.77 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@cookbook/mapper-js",
"version": "1.0.0",
"description": "Fast, reliable and intuitive object mapping.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/the-cookbook/mapper-js.git"
},
"engines": {
"node": ">=12"
},
"author": "Marcos Gonçalves <[email protected]>",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/the-cookbook/mapper-js/issues"
},
"homepage": "https://github.com/the-cookbook/mapper-js#readme",
"keywords": [
"library",
"javascript",
"typescript",
"mapper",
"mapping",
"data-mapping",
"object-mapping",
"dot-notation"
],
"scripts": {
"authors": "node ./scripts/authors.js",
"prepare": "husky install && npm run build && npm run authors",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags",
"release": "standard-version",
"prestart": "npm run clean",
"start": "webpack serve --mode development --progress --profile",
"new": "plop",
"commit": "npx git-cz",
"build": "npm run clean && npx babel src/ -d lib --extensions '.ts' --ignore '**/*.test.ts,**/__mocks__/**/*' && tsc --project tsconfig.json --declaration --emitDeclarationOnly",
"postbuild": "rollup --config",
"clean": "rm -rf lib && rm -rf .*cache",
"test": "jest --no-cache",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --maxWorkers=2",
"lint": "npm-run-all lint:*",
"lint:js": "eslint './src/**/*.{ts,tsx}' || exit 0",
"lint-fix": "run-p lint-fix:*",
"lint-fix:js": "npm run lint:js -- --fix || exit 0",
"prettier": "prettier -c --write 'src/**/*'"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-export-default-from": "7.14.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@commitlint/cli": "13.2.0",
"@commitlint/config-conventional": "13.2.0",
"@semantic-release/git": "v9.0.1",
"@semantic-release/github": "7.2.3",
"@types/chai": "4.2.22",
"@types/core-js": "2.5.5",
"@types/expect": "24.3.0",
"@types/jest": "27.0.2",
"@types/react": "17.0.26",
"@types/react-dom": "17.0.9",
"@types/react-test-renderer": "17.0.1",
"@types/webpack-env": "1.16.2",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"babel-loader": "8.2.2",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-plugin-transform-remove-console": "6.9.4",
"chai": "4.3.4",
"commitizen": "4.2.4",
"commitlint": "13.2.0",
"copy-webpack-plugin": "9.0.1",
"cz-conventional-changelog": "3.3.0",
"deepmerge": "4.2.2",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.5.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-no-only-tests": "2.6.0",
"eslint-plugin-no-unsanitized": "3.1.5",
"eslint-plugin-optimize-regex": "1.2.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "4.12.4",
"html-webpack-plugin": "5.3.2",
"husky": "7.0.2",
"jest": "27.2.4",
"lint-staged": "11.1.2",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-docgen": "5.4.0",
"react-docgen-typescript": "2.1.0",
"react-dom": "17.0.2",
"react-hot-loader": "4.13.0",
"react-json-view": "1.21.3",
"react-test-renderer": "17.0.2",
"require-all": "3.0.0",
"rollup": "2.58.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2",
"source-map-loader": "3.0.0",
"standard-version": "9.3.1",
"start-server-and-test": "1.14.0",
"terser-webpack-plugin": "5.2.4",
"ts-jest": "27.0.5",
"typescript": "4.4.3",
"webpack": "5.56.0",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.3.0",
"webpack-merge": "5.8.0"
},
"peerDependencies": {},
"dependencies": {
"@cookbook/dot-notation": "1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}