-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
136 lines (136 loc) · 4.18 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
{
"name": "@swaggerexpert/json-api-merge",
"publishConfig": {
"access": "public"
},
"description": "JSON:API specific redundant duplication algorithm for merging included resources into original data.",
"keywords": [
"json:api",
"merge",
"included",
"redundant",
"duplication"
],
"type": "module",
"version": "2.0.1",
"homepage": "https://github.com/swaggerexpert/json-api-merge",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/swaggerexpert/json-api-merge"
},
"engines": {
"node": ">=0.10.3"
},
"author": {
"name": "Vladimir Gorej",
"email": "[email protected]",
"url": "https://swaggerexpert.com/"
},
"sideEffects": false,
"main": "./lib/index.cjs",
"unpkg": "dist/web.standalone.min.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./es/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "better-npm-run lint",
"lint:fix": "better-npm-run lint:fix",
"test": "mocha",
"test:web": "better-npm-run test:web",
"test:types": "dtslint ./types",
"test:bundle-create": "better-npm-run test:bundle-create",
"test:bundle-clean": "better-npm-run test:bundle-clean",
"build": "better-npm-run build",
"build:es": "better-npm-run build:es",
"build:commonjs": "better-npm-run build:commonjs",
"build:umd": "better-npm-run build:umd",
"prepublishOnly": "better-npm-run prepublishOnly",
"clean": "better-npm-run clean"
},
"betterScripts": {
"lint": "eslint ./ && tslint --project types/tsconfig.json -c types/tslint.json types/**/*.ts",
"lint:fix": "eslint ./ --fix && tslint --fix --project types/tsconfig.json -c types/tslint.json types/**/*.ts",
"test:web": "testem ci",
"test:bundle-create": "webpack --config webpack.config-test.web.cjs --progress",
"test:bundle-clean": "rimraf tmp-test-bundle.js",
"build": "npm run build:es && npm run build:commonjs && npm run build:umd",
"build:es": {
"command": "babel src/index.js --out-file es/index.mjs",
"env": {
"BABEL_ENV": "es"
}
},
"build:commonjs": {
"command": "babel src/index.js --out-file lib/index.cjs",
"env": {
"BABEL_ENV": "commonjs"
}
},
"build:umd": {
"command": "webpack --config webpack.config.cjs --progress",
"env": {
"BABEL_ENV": "browser"
}
},
"prepublishOnly": "npm run clean && npm run lint && npm run test && npm run test:web && npm run build",
"clean": "rimraf .tmp tmp-test-bundle.js dist lib es test-results.xml"
},
"readme": "README.md",
"dependencies": {
"ramda": ">=0.19.0",
"ramda-adjunct": ">=0.3.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/plugin-transform-modules-commonjs": "7.25.9",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.26.0",
"@babel/register": "7.25.9",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"babel-loader": "9.2.1",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-annotate-pure-calls": "0.4.0",
"babel-plugin-istanbul": "7.0.0",
"better-npm-run": "0.1.1",
"chai": "5.1.2",
"codecov": "3.8.3",
"dtslint": "=4.2.1",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "=15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "=2.31.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-ramda": "2.5.1",
"glob": "=11.0.0",
"husky": "9.1.7",
"istanbul": "=0.4.5",
"license-cli": "1.1.6",
"lint-staged": "15.2.10",
"mocha": "=10.8.2",
"mocha-junit-reporter": "2.2.1",
"mocha-multi-reporters": "1.5.1",
"nyc": "17.1.0",
"prettier": "=3.4.1",
"ramda": "=0.30.1",
"ramda-adjunct": "=5.1.0",
"rimraf": "6.0.1",
"sinon": "19.0.2",
"terser-webpack-plugin": "5.3.10",
"testem": "3.15.2",
"tslint": "=6.1.3",
"typescript": "=5.7.2",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
},
"tonicExampleFilename": "tonicExample.js"
}