-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.73 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
{
"name": "diff-match-patch-typescript",
"version": "1.1.0",
"description": "TypeScript port of diff-match-patch.",
"license": "Apache-2.0",
"main": "dist/lib/index.js",
"module": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"author": {
"email": "[email protected]",
"name": "nonoroazoro",
"url": "https://github.com/nonoroazoro"
},
"repository": {
"type": "git",
"url": "https://github.com/nonoroazoro/diff-match-patch-typescript"
},
"scripts": {
"clean": "rimraf dist/*",
"cleanCov": "rimraf @coverage",
"prebuild": "npm run clean && npm run cleanCov",
"build": "npm run build:es && npm run build:lib && npm run build:types",
"build:es": "tsc --project ./tsconfig.es.json",
"build:lib": "tsc --project ./tsconfig.lib.json",
"build:types": "tsc --project ./tsconfig.types.json",
"lint": "eslint src/**",
"test": "jest --config ./scripts/jest/jest.config.js",
"test:watch": "jest --config ./scripts/jest/jest.config.js --watch --verbose false",
"test:cov": "npm run cleanCov && npm test -- --coverage",
"upgradepackages": "./scripts/upgrade_packages.sh"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.9.1",
"eslint-config-zoro": "^6.1.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4"
},
"files": [
"dist"
]
}