-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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": "js-properties-to-json",
"version": "0.1.0",
"description": "Convert a Java properties file to JSON (with JavaScript).",
"types": "./dist/types/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist/"
],
"scripts": {
"serve": "serve ./",
"build": "rollup --config --bundleConfigAsCjs && tsc --emitDeclarationOnly",
"test": "node ./test/test.js ",
"watch": "onchange \"src/**/*.*\" -v -- npm run buildTest",
"buildTest": "npm run build && npm run test",
"deploy": "npm run build && gh-pages -d ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mehimanshupatil/propertiesToJSON.git"
},
"keywords": [
"java",
"properties",
"json",
"conversion"
],
"author": "Himanshu Patil",
"license": "MIT License",
"bugs": {
"url": "https://github.com/mehimanshupatil/propertiesToJSON/issues"
},
"homepage": "https://mehimanshupatil.github.io/propertiesToJSON/",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.23",
"gh-pages": "^5.0.0",
"onchange": "^7.1.0",
"rollup": "^3.21.8",
"serve": "^14.2.0",
"tslib": "^2.3.1",
"typescript": "^5.0.4"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}