-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "@flydotio/dockerfile",
"version": "0.5.9",
"description": "Dockerfile generator",
"main": "./index.js",
"bin": {
"dockerfile": "index.js"
},
"type": "module",
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"test": "mocha --spec test/test.js",
"test:capture": "TEST_CAPTURE=1 mocha"
},
"author": "Sam Ruby",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@sveltejs/adapter-node": "^5.2.11",
"chalk": "^5.3.0",
"diff": "^5.2.0",
"ejs": "^3.1.10",
"shell-quote": "^1.8.1",
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fly-apps/dockerfile-node.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^6.6.0",
"mocha": "^10.8.2"
},
"files": [
"index.js",
"gdf.js",
"fly.js",
"templates"
],
"packageManager": "[email protected]+sha1.75c6e8a4075abfc494770f998bf37b9ada110f51"
}