-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.25 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
{
"name": "@designory/diff-dev-prod",
"version": "0.1.1",
"description": "View useful differences between development source code and deployed production code.",
"author": "Matt Wade <[email protected]>",
"keywords": [
"diff",
"static-site",
"source-of-truth",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Designory/diff-dev-prod.git"
},
"bugs": {
"url": "https://github.com/Designory/diff-dev-prod/issues"
},
"scripts": {
"test": "echo NO TESTS"
},
"bin": {
"ddp": "./bin/run",
"diff-dev-prod": "./bin/run"
},
"main": "src/index.js",
"files": [
"/bin",
"/src"
],
"oclif": {
"bin": "ddp"
},
"license": "MIT",
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.0",
"chalk": "^4.1.0",
"child-process-promise": "^2.2.1",
"diff2html": "^3.1.14",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"html-minifier": "^4.0.0",
"inquirer": "^7.3.3",
"js-beautify": "^1.13.0",
"jsdom": "^16.4.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"mocha": "^8.2.0",
"mock-stdin": "^1.0.0",
"nock": "^13.0.4"
}
}