This repository was archived by the owner on Dec 3, 2025. It is now read-only.
forked from ace-diff/ace-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 KB
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
{
"name": "ace-diff",
"version": "0.0.0-development",
"description": "A diff/merging wrapper for Ace Editor built on google-diff-match-patch",
"main": "dist/ace-diff.min.js",
"module": "src/index.js",
"unpkg": "dist/ace-diff.min.js",
"scripts": {
"build": "parcel build src/index.js --global AceDiff --out-file ace-diff.min.js && npm run build-css",
"build-css": "parcel build src/styles/ace-diff.scss --out-file ace-diff.min.css && parcel build src/styles/ace-diff-dark.scss --out-file ace-diff-dark.min.css",
"dev": "parcel serve test/fixtures/index.html --open -d .parcel-cache",
"serve": "parcel test/fixtures/*.html --global AceDiff -p 8081 --no-hmr -d .parcel-cache",
"test": "npm run jest && cypress run",
"jest": "jest",
"cypress": "cypress open",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/ace-diff/ace-diff.git"
},
"keywords": [
"ace",
"dif",
"diffing",
"merge",
"merging",
"ace editor",
"syntax highlighting"
],
"author": "Ben Keen",
"license": "MIT",
"bugs": {
"url": "https://github.com/ace-diff/ace-diff/issues"
},
"homepage": "https://ace-diff.github.io/ace-diff/",
"devDependencies": {
"cypress": "^12.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-cypress": "^2.1.2",
"eslint-plugin-import": "^2.20.2",
"jest": "^29.3.1",
"parcel-bundler": "^1.12.5",
"sass": "^1.26.5",
"semantic-release": "^19.0.5"
}
}