-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 916 Bytes
/
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
{
"name": "@designory/build-diff",
"version": "0.3.2",
"description": "A small CLI utility to compare two \"build\" folders, and copy out the differences between them.",
"main": "index.js",
"bin": {
"build-diff": "index.js"
},
"scripts": {
"test": "mocha",
"prepublishOnly": "yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Designory/build-diff.git"
},
"keywords": [],
"author": "Matt Wade",
"license": "MIT",
"bugs": {
"url": "https://github.com/Designory/build-diff/issues"
},
"homepage": "https://github.com/Designory/build-diff#readme",
"engines": {
"node": ">=8.9.0"
},
"os": [
"darwin",
"linux"
],
"dependencies": {
"colors": "^1.3.3",
"fs-extra": "^8.1.0",
"lodash": "^4.17.19",
"minimist": "^1.2.0"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"mocha": "^6.2.0"
}
}