-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "merge-left-utils",
"version": "1.0.9",
"description": "Merge objects without structure changes",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": {
"type": "git",
"url": "https://github.com/ikenfin/merge-left-utils/"
},
"bugs": {
"url": "https://github.com/ikenfin/merge-left-utils/issues"
},
"files": [
"dist"
],
"keywords": [
"merge",
"merge-objects",
"merge-left"
],
"author": "ikenfin",
"license": "MIT",
"scripts": {
"bundle": "NODE_ENV=production rollup -c",
"dev": "NODE_ENV=develop rollup -c",
"test": "jest",
"test:coverage": "jest --coverage test/*.test.ts",
"lint": "eslint ./src/**/*.ts",
"lint:tests": "eslint ./test/**/*.ts"
},
"devDependencies": {
"@babel/preset-typescript": "7.18.6",
"@types/jest": "28.1.4",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"babelrc-rollup": "^3.0.0",
"eslint": "8.19.0",
"is-ci": "^3.0.1",
"jest": "28.1.2",
"prettier": "2.7.1",
"rollup": "2.76.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-typescript2": "0.32.1",
"ts-jest": "28.0.5",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}