-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 829 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 829 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
31
32
33
34
35
36
{
"name": "jsonpatch-observe",
"version": "1.0.0",
"description": "Observe objects recursively and generate JSON patches",
"keywords": [
"jsonpatch",
"observe",
"json-rpc",
"data-binding",
"firebase"
],
"homepage": "https://github.com/ken107/jsonpatch-observe",
"license": "MIT",
"author": "Hai Phan <hai.phan@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ken107/jsonpatch-observe"
},
"bugs": {
"url": "https://github.com/ken107/jsonpatch-observe/issues"
},
"files": [
"dist/observe.js",
"dist/observe.d.ts"
],
"scripts": {
"build": "tsc",
"test": "node dist/observe.test"
},
"main": "dist/observe.js",
"types": "dist/observe.d.ts",
"devDependencies": {
"@types/node": "^20.14.4",
"typescript": "^5.4.5"
}
}