-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 952 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
{
"name": "json-extenders",
"version": "1.0.0",
"description": "Utilities to extend the range of data types serialisable/deserialisable in JSON",
"main": "json-extenders.js",
"scripts": {
"min": "jsmin -o json-extenders.min.js json-extenders.js",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TracyGJG/json-extenders.git"
},
"type": "module",
"keywords": [
"JSON"
],
"author": "Tracy-Gregory Gilmore",
"license": "MIT",
"bugs": {
"url": "https://github.com/TracyGJG/json-extenders/issues"
},
"homepage": "https://github.com/TracyGJG/json-extenders#readme",
"devDependencies": {
"jest": "^29.3.1",
"jsmin": "^1.0.1"
}
}