-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "@neoskop/dockerfile.js",
"version": "0.7.0",
"description": "Write configurable, scriptable, reusable dockerfiles in Typescript or plain Javascript.",
"keywords": [
"docker",
"dockerfile",
"typescript",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/neoskop/dockerfile.js"
},
"bugs": {
"url": "https://github.com/neoskop/dockerfile.js/issues"
},
"main": "./index.js",
"author": "Mark Wecke <wecke@neoskop.de>",
"license": "MIT",
"private": false,
"scripts": {
"prebuild": "npm test",
"build": "rimraf dist && tsc",
"postbuild": "cp README.md dist && cp LICENSE.md dist && cp package.json dist && cp -r bin dist/bin",
"fb": "flow-bump",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --coverage-reporters html --coverage-reporters lcov",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"publish-next": "npm run build && (cd dist && npm publish --tag next)",
"publish-latest-only": "npm run build && (cd dist && npm publish)",
"publish-latest": "npm run publish-latest-only && npm dist-tag add `jq '.name' package.json -r`@`jq '.version' package.json -r` next"
},
"bin": {
"dockerfile-js": "bin/cli.js"
},
"dependencies": {
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"glob-promise": "^5.0.0",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.8.4",
"yargs": "17.6.0"
},
"devDependencies": {
"@neoskop/flow-bump": "1.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "29.1.1",
"@types/node": "18.8.1",
"@types/yargs": "17.0.13",
"coveralls": "3.1.1",
"jest": "29.1.2",
"rimraf": "3.0.2",
"ts-jest": "29.0.3"
}
}