forked from bhousel/node-diff3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
54
55
56
57
58
{
"name": "node-diff3",
"version": "3.0.0",
"license": "MIT",
"repository": "github:bhousel/node-diff3",
"description": "A node.js module for text diffing and three-way-merge.",
"contributors": [
"Bryan Housel <[email protected]> (https://github.com/bhousel)"
],
"keywords": [
"diff",
"diff3",
"diffutils",
"gnu",
"javascript",
"merge",
"nodejs",
"patch"
],
"files": [
"index.mjs",
"index.d.ts",
"dist/"
],
"type": "module",
"source": "./index.mjs",
"types": "./index.d.ts",
"main": "./dist/index.cjs",
"module": "./index.mjs",
"exports": {
"import": "./index.mjs",
"require": "./dist/index.cjs"
},
"scripts": {
"all": "run-s clean test",
"clean": "shx rm -rf dist",
"build": "run-p build:**",
"build:browser": "esbuild ./index.mjs --platform=browser --format=iife --global-name=Diff3 --bundle --sourcemap --outfile=./dist/index.iife.js",
"build:cjs": "esbuild ./index.mjs --platform=node --format=cjs --sourcemap --outfile=./dist/index.cjs",
"lint": "eslint index.mjs test/*.js",
"tap": "c8 tap --reporter terse --no-cov test/*.js",
"test": "run-s build lint tap"
},
"devDependencies": {
"c8": "^7.7.3",
"esbuild": "^0.12.9",
"eslint": "^7.29.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.3",
"tap": "^15.0.9"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}