-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "@emmetio/xml-diff",
"version": "2.2.0",
"description": "Performs diff between two XML documents",
"main": "./dist/xml-diff.cjs.js",
"module": "./dist/xml-diff.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha",
"lint": "eslint ./src/*.ts",
"build": "rollup -c",
"watch": "rollup -wc",
"clean": "rm -rf ./dist",
"prepare": "npm run lint && npm test && npm run clean && npm run build"
},
"keywords": [],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/diff-match-patch": "^1.0.32",
"@types/mocha": "^9.1.1",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"mocha": "^10.0.0",
"rollup": "^2.78.1",
"rollup-plugin-typescript2": "^0.33.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.0"
},
"dependencies": {
"@emmetio/html-matcher": "^1.3.0",
"@emmetio/scanner": "1.0.0",
"diff-match-patch": "^1.0.5"
},
"mocha": {
"require": "ts-node/register",
"spec": "./test/*.ts"
}
}