This repository was archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.03 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
{
"name": "resin-bundle-resolve",
"version": "4.3.0",
"description": "Resolve resin-bundles into a docker daemon format",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc --project tsconfig.release.json",
"build:test": "npm run clean && tsc --project . && mkdirp build/test && ncp test/test-files build/test/test-files",
"lint": "resin-lint --typescript src/ test/ typings/",
"prettify": "resin-lint --typescript --fix src/ test/ typings/",
"test": "npm run lint && npm run build:test && mocha",
"prepublish": "require-npm4-to-publish",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/resin-io-modules/resin-bundle-resolve.git"
},
"author": "Cameron Diver <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/resin-io-modules/resin-bundle-resolve/issues"
},
"homepage": "https://github.com/resin-io-modules/resin-bundle-resolve#readme",
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.10",
"@types/chai-as-promised": "^7.1.2",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.59",
"@types/request": "^2.48.4",
"@types/semver": "^7.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mkdirp": "^1.0.3",
"mocha": "^6.2.2",
"ncp": "^2.0.0",
"require-npm4-to-publish": "^1.0.0",
"resin-lint": "^3.3.1",
"rimraf": "^3.0.2",
"tar-utils": "^2.0.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/tar-stream": "^2.1.0",
"bluebird": "^3.7.2",
"bluebird-lru-cache": "^1.0.1",
"dockerfile-template": "^0.2.0",
"lodash": "^4.17.15",
"request": "^2.88.2",
"semver": "^7.1.3",
"strict-event-emitter-types": "^2.0.0",
"tar-stream": "^2.0.1",
"typed-error": "^3.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}