-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
44
45
46
47
48
{
"name": "advanced-deep-proxy",
"version": "1.0.2",
"description": "Efficient deep proxy implementation with history and more",
"engines": {
"node": ">= 12.13 <13"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"canvas": "^2.6.0",
"jest": "~24.9.0",
"jest-coverage-badges": "^1.1.2",
"js-regression": "^1.0.10",
"prettier": "~1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"tslint": "~5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "~6.2.0",
"tsutils": "~3.17.0",
"typescript": "~3.7.2",
"vega": "^5.8.0"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage && jest-coverage-badges",
"test:watch": "jest --watch",
"coverage": "google-chrome coverage/lcov-report/index.html"
},
"author": "Łukasz Karczewski <ywnwa96@gmail.com>",
"license": "MIT",
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"keywords": [
"proxy",
"Proxy",
"state",
"object",
"ES6"
],
"homepage": "https://github.com/lukigarazus/deep-proxy"
}