forked from ace-diff/ace-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.63 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
{
"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": "NODE_ENV=test npm run mocha && cypress run",
"mocha": "mocha test/**/*.test.js",
"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/",
"dependencies": {
"diff-match-patch": "^1.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"cypress": "^4.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-cypress": "^2.1.2",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.2.0",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.5",
"semantic-release": "^17.0.8"
}
}