forked from ace-diff/ace-diff
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.61 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
{
"name": "ace-diff3",
"version": "0.0.0-development",
"description": "A 3-way diff/merging wrapper for Ace Editor built on AceDiff and google-diff-match-patch",
"main": "dist/ace-diff3.min.js",
"module": "src/index.js",
"unpkg": "dist/ace-diff3.min.js",
"scripts": {
"build": "parcel build src/index.js --global AceDiff3 --out-file ace-diff3.min.js && npm run build-css",
"build-dev": "parcel build --no-minify src/index.js --global AceDiff3 --out-file ace-diff3.js && npm run build-css-dev",
"build-css": "parcel build src/styles/ace-diff3.scss --out-file ace-diff3.min.css && parcel build src/styles/ace-diff3-dark.scss --out-file ace-diff3-dark.min.css",
"build-css-dev": "parcel build --no-minify src/styles/ace-diff3.scss --out-file ace-diff3.css && parcel build src/styles/ace-diff3-dark.scss --out-file ace-diff3-dark.css",
"dev": "parcel serve test/fixtures/index.html --open -d .parcel-cache",
"serve": "parcel test/fixtures/*.html --global AceDiff3 -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"
},
"author": "Simon Morgan",
"license": "MIT",
"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"
}
}