-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "rfc6902-json-diff",
"version": "1.0.0",
"description": "RFC6902-compliant JSON diff generator",
"main": "./dist/index.js",
"scripts": {
"prebuild-checks": "npm-run-all -c tsc-lint lint",
"build": "tsup src/index.ts --dts --format cjs --minify --treeshake --target es6",
"test": "ava",
"tsc-lint": "tsc --noEmit",
"lint": "eslint ./src"
},
"ava": {
"timeout": "20s",
"files": [
"src/tests/**/*"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"author": "Alexander Bolshakov",
"license": "MIT",
"devDependencies": {
"@tsconfig/node16-strictest": "^1.0.3",
"@types/lodash": "^4.14.184",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"ava": "^4.3.3",
"eslint": "^8.32.0",
"fast-json-patch": "^3.1.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
}
}