-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "object-basin",
"version": "2.1.0",
"description": "JavaScript/TypeScript library to stream updates to an object.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/microsoft/object-basin.git"
},
"author": "Justin D. Harris <juharris@users.noreply.github.com>",
"homepage": "https://github.com/microsoft/object-basin",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"JSONPath",
"JSON",
"object",
"stream",
"update",
"patch"
],
"files": [
"build"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"test": "ts-mocha --recursive --exit --extension ts src/**/*.test.ts",
"test-watch": "ts-mocha --recursive --watch --extension ts src/**/*.test.ts"
},
"dependencies": {
"fast-json-patch": "^3.1.1",
"jsonpath": "^1.1.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/jsonpath": "^0.2.0",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.9.5"
}
}