forked from mehimanshupatil/propertiesToJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.63 KB
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.0.6",
"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 && tsc --emitDeclarationOnly",
"test": "node ./test/test.js && node ./test/test.mjs",
"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": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.23",
"gh-pages": "^3.2.3",
"onchange": "^7.1.0",
"rollup": "^2.77.0",
"serve": "^13.0.2",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}