This repository was archived by the owner on Feb 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 KB
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
{
"name": "node-image-stream",
"version": "0.0.3",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint test/*.js *.js",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git://github.com/bucharest-gold/node-image-stream.git"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"transformer.js",
"cli.js"
],
"main": "transformer.js",
"bin": {
"node-image-stream": "./cli.js"
},
"bugs": {
"url": "https://github.com/bucharest-gold/node-image-stream/issues"
},
"homepage": "https://github.com/bucharest-gold/node-image-stream",
"devDependencies": {
"eslint": "~3.8.1",
"eslint-config-semistandard": "~7.0.0",
"eslint-config-standard": "~6.2.0",
"eslint-plugin-promise": "~3.3.0",
"eslint-plugin-react": "~6.4.1",
"eslint-plugin-standard": "~2.0.1",
"istanbul": "~0.4.5",
"tap-spec": "~4.1.1",
"tape": "~4.6.2",
"standard-version": "^3.0.0"
},
"description": "Simple utility to generate OpenShift image stream metadata for Node.js images",
"keywords": [
"openshift",
"kube",
"kubernetes",
"docker",
"container"
],
"dependencies": {
"cli": "~1.0.1",
"semver": "~5.3.0",
"underscore": "~1.8.3"
}
}