-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
47
48
49
50
51
52
53
54
55
56
{
"name": "dmergejs",
"version": "0.2.0",
"description": "Small library to help you merge same formatted data in a string",
"main": "build/index.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"prepublishOnly": "npm run build && npm test",
"test": "npx jest"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.0.0",
"@types/jest": "^27.0.3",
"jest": "^27.4.3",
"rollup": "^2.3.4",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-terser": "^7.0.0",
"ts-jest": "^27.0.7",
"tslib": "^2.0.0",
"typescript": "^4.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/KucingKode/Dmerge"
},
"homepage": "https://github.com/KucingKode/Dmerge",
"bugs": {
"url": "https://github.com/KucingKode/Dmerge/issues"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"data",
"merge",
"deep-merge",
"merge-string",
"merge-data",
"string",
"object",
"utility",
"library"
],
"author": "KucingKode",
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"yaml": "^1.10.2"
}
}