-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "array-differences",
"version": "3.0.2",
"description": "Find the differences between two arrays and their positions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "David Hérault <dherault@gmail.com> (https://github.com/dherault)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dherault/array-differences.git"
},
"homepage": "https://github.com/dherault/array-differences#readme",
"bugs": {
"url": "https://github.com/dherault/array-differences/issues"
},
"keywords": [
"array",
"differences",
"difference",
"array-diff",
"array-difference",
"diffing"
],
"scripts": {
"test": "jest --coverage",
"build": "rimraf dist && tsc --declaration",
"lint": "tsc && eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepublishOnly": "npm run lint && npm test && npm run build",
"prepare": "husky"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"eslint": "^8.26.0",
"eslint-config-dherault-typescript": "^1.3.7",
"husky": "^9.1.4",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}