-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.22 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
68
69
70
71
72
73
{
"name": "livepush",
"version": "3.5.1",
"description": "Update your containers live!",
"main": "build/index.js",
"types": "build/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"clean": "rm -rf build",
"prepare": "npm run build",
"prepublish": "require-npm4-to-publish",
"lint": "resin-lint --typescript --fix lib/ test/ && tsc --noEmit",
"build": "npm run clean && tsc --project tsconfig.publish.json",
"build:test": "npm run clean && tsc --project . && npm run test:copy",
"test": "npm run lint && npm run test:cov",
"test:cov": "npm run build:test && nyc mocha --opts test/mocha.prod.opts build/test/*.spec.js",
"test:copy": "cp -r test/contexts build/test/; cp -r test/dockerfiles build/test/",
"test:fast": "TS_NODE_FILES=true npx mocha",
"test:watch": "TS_NODE_FILES=true npx mocha --watch --watch-extensions ts"
},
"author": "Cameron Diver <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/dockerode": "^2.5.34",
"@types/lodash": "^4.14.149",
"@types/md5": "^2.1.32",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.5",
"@types/mz": "0.0.32",
"@types/shell-escape": "^0.2.0",
"@types/shell-quote": "^1.6.0",
"@types/sinon": "^5.0.7",
"@types/tar-fs": "^1.16.3",
"@types/tar-stream": "^1.6.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"husky": "^3.1.0",
"lint-staged": "^8.2.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"require-npm4-to-publish": "^1.0.0",
"resin-lint": "^3.3.1",
"sinon": "^6.3.5",
"source-map-support": "^0.5.16",
"tar-fs": "^2.0.0",
"typescript": "^3.8.3"
},
"dependencies": {
"bluebird": "^3.7.2",
"chokidar": "^3.3.1",
"docker-file-parser": "^1.0.4",
"dockerode": "^2.5.6",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
"mz": "^2.7.0",
"node-watch": "^0.5.9",
"shell-escape": "^0.2.0",
"shell-quote": "^1.7.2",
"strict-event-emitter-types": "^2.0.0",
"ts-node": "^8.6.2",
"typed-error": "^3.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}