-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.54 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
59
60
61
62
63
64
65
66
67
{
"name": "object-diff-ast",
"version": "0.10.1",
"description": "Compares two objects and calculates the difference",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ErnestMazurin/object-diff-ast"
},
"scripts": {
"ts-node": "ts-node",
"lint": "eslint . --ext .ts",
"build": "tsc",
"test": "jest",
"start": "ts-node src/bin/getdiff.ts",
"prepublishOnly": "yarn build"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "node",
"collectCoverage": true
},
"bin": {
"getdiff": "dist/bin/getdiff.js"
},
"files": [
"dist"
],
"keywords": [
"object",
"diff",
"changes",
"json",
"ini",
"yml",
"config",
"cli"
],
"author": "ErnestMazurin",
"license": "ISC",
"dependencies": {
"@types/ini": "^1.3.30",
"@types/js-yaml": "^3.12.5",
"commander": "^5.1.0",
"ini": "^1.3.5",
"js-yaml": "^3.14.0"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}