-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 860 Bytes
/
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
{
"name": "revive-functions",
"version": "0.2.0",
"description": "JSON reviver, allowing named functions and their parameters to be replaced by their output values",
"main": "revive-functions.mjs",
"type": "module",
"scripts": {
"test": "npx mocha *.test.mjs",
"tidy": "npx standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phhu/revive-functions.git"
},
"keywords": [
"JSON",
"parse",
"JSON.parse",
"revive",
"reviver",
"function",
"func"
],
"author": "phhu.git@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/phhu/revive-functions/issues"
},
"homepage": "https://github.com/phhu/revive-functions#readme",
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.2",
"sinon": "^13.0.2",
"standard": "^17.0.0"
}
}