-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "json-difference",
"version": "1.6.0",
"description": "json diff lib",
"license": "MIT",
"main": "dist/core",
"types": "dist/core/index.d.ts",
"engines": {
"node": ">=14.x"
},
"files": [
"dist",
"dist.browser"
],
"scripts": {
"lint": "eslint --ext .ts",
"check-types": "tsc --noemit -p tsconfig.json",
"test": "jest --config jestconfig.json --coverage",
"test:local": "jest --watchAll --config jestconfig.json",
"example": "echo Use {simple} or {stress} as example param && cd ./examples && yarn",
"build": "tsc && vite build",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "yarn build",
"prepublishOnly": "yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukascivil/jsondiffer.git"
},
"keywords": [
"json",
"diff"
],
"author": "lukascivil",
"homepage": "https://github.com/lukascivil/jsondiffer#readme",
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^26.8.3",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"typescript": "4.4.3",
"vite": "^3.0.7",
"vite-tsconfig-paths": "^3.5.0"
}
}