-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
{
"name": "@globefish/json-diff",
"version": "0.0.5",
"description": "Generate report of json-diff result for 2 directories/files",
"homepage": "https://github.com/ufonion/jsondiff-report",
"repository": "[email protected]:ufonion/jsondiff-report.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"jsondiff-report": "dist/cli.js"
},
"author": "Marshall Ma",
"license": "MIT",
"scripts": {
"format": "tsfmt -r",
"clean": "rm -rf dist build",
"compile": "yarn clean && yarn format && tsc && yarn lint",
"build": "yarn compile && yarn test && yarn _copylib && yarn doc",
"test": "scripty",
"lint": "scripty",
"_copylib": "mkdir -p dist && cp -R build/src/* dist/",
"npm_publish": "scripty",
"prepare": "yarn build",
"doc": "typedoc && touch docs/.nojekyll"
},
"devDependencies": {
"@types/bunyan": "^1.8.5",
"@types/chai": "^4.1.7",
"@types/cli-color": "0.3.29",
"@types/json-schema": "^7.0.1",
"@types/lodash": "^4.14.120",
"@types/minimist": "1.2.0",
"@types/mocha": "^5.2.5",
"@types/mz": "0.0.32",
"@types/node": "^10.12.18",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"scripty": "^1.9.0",
"source-map-support": "^0.5.10",
"tslint": "^5.12.1",
"tslint-consistent-codestyle": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"tslint-sonarts": "^1.9.0",
"tslint-strict-error-throw": "^1.0.1",
"typedoc": "0.15.0",
"typescript": "^3.2.4",
"typescript-formatter": "^7.2.2"
},
"dependencies": {
"bunyan": "1.8.12",
"cli-color": "1.4.0",
"json-diff": "0.5.4",
"lodash": "^4.17.11",
"minimist": "1.2.0",
"mrm-core": "3.3.2",
"mz": "2.7.0",
"stdin": "0.0.1"
}
}