-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.3 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": "simple-text-diff",
"version": "1.7.0",
"description": "a simple module for comparing text diff",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "babel src --out-dir lib --extensions \".ts,.tsx\"",
"test": "jest",
"build:types": "tsc --emitDeclarationOnly",
"check-types": "tsc --watch --noEmit",
"prepare": "npm run build && npm run build:types",
"preversion": "npm run test",
"gitpush": "git commit -am'update version' && git push",
"release": "npm run prepare && npm version minor && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhenghuahou/text-diff.git"
},
"keywords": [
"simple",
"text",
"diff",
"patch",
"diffPatch"
],
"author": "houzhenghua",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhenghuahou/text-diff/issues"
},
"homepage": "https://github.com/zhenghuahou/text-diff#readme",
"files": [
"lib",
"test"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.6",
"jest": "^25.1.0"
},
"dependencies": {
"fast-diff": "^1.2.0"
}
}