-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 877 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 877 Bytes
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
{
"name": "customized-json",
"version": "0.1.0",
"description": "A JSON parser that allows users to overwrite default parsing behavior by customized rules defined in a user-defined function that provides more useful parameters than the reviver function of JSON.parse().",
"main": "./src/index.js",
"scripts": {
"test": "jest ./tests/ --coverage",
"dist": "standard ./src/**/*.js && yarn test",
"prepublishOnly": "yarn && yarn dist"
},
"repository": "https://github.com/SebastianG77/customized-json.git",
"keywords": [
"JSON",
"parse",
"reviver",
"custom",
"customize",
"function",
"user-defined",
"individual"
],
"author": "SebastianG",
"license": "MIT",
"private": false,
"devDependencies": {
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"standard": "^16.0.3"
}
}