UNPKG

2.23 kBJSONView Raw
1{
2 "name": "pk-template",
3 "version": "0.1.41",
4 "description": "p template engine for kubernetes",
5 "main": "dist/pk-lib/index.js",
6 "scripts": {
7 "start": "ts-node bin/pkt.ts",
8 "watch": "npm run distclean && tsc --watch",
9 "build": "npm run distclean && webpack --config webpack.config.js",
10 "deploy": "npm run distclean && webpack --config webpack.config.js && npm publish",
11 "webpack": "webpack --config webpack.config.js",
12 "distclean": "rimraf dist/*",
13 "test": "true",
14 "release": "release-it"
15 },
16 "bin": {
17 "pkt": "bin/pkt.js",
18 "pkctl": "bin/pkctl.js"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/dirty49374/pk-template.git"
23 },
24 "keywords": [
25 "pk-template",
26 "pkt",
27 "k8s",
28 "yaml",
29 "template",
30 "kubernetes"
31 ],
32 "author": "dirty49374@gmail.com",
33 "license": "ISC",
34 "bugs": {
35 "url": "https://github.com/dirty49374/pk-template/issues"
36 },
37 "homepage": "https://github.com/dirty49374/pk-template#readme",
38 "dependencies": {
39 "@types/readline-sync": "^1.4.3",
40 "ajv": "^6.6.1",
41 "chalk": "^2.4.1",
42 "coffeescript": "^2.3.2",
43 "colors": "^1.3.3",
44 "diff": "^4.0.1",
45 "js-yaml": "^3.12.1",
46 "json-patch": "^0.7.0",
47 "jsonpath": "^1.0.0",
48 "livescript": "^1.6.0",
49 "readline-sync": "^1.4.9",
50 "sync-request": "^6.0.0",
51 "underscore": "^1.9.1",
52 "yargs": "^12.0.5"
53 },
54 "devDependencies": {
55 "@types/ajv": "^1.0.0",
56 "@types/diff": "^4.0.1",
57 "@types/js-yaml": "^3.12.0",
58 "@types/json-patch": "0.0.30",
59 "@types/jsonpath": "^0.2.0",
60 "@types/node": "^11.9.4",
61 "@types/underscore": "^1.8.9",
62 "mocha": "^5.2.0",
63 "release-it": "*",
64 "ts-loader": "^5.3.3",
65 "typescript": "^3.3.3",
66 "webpack": "^4.29.3",
67 "webpack-cli": "^3.2.3",
68 "webpack-node-externals": "^1.7.2"
69 },
70 "release-it": {
71 "git": {
72 "requireCleanWorkingDir": false,
73 "tagName": "v${version}"
74 }
75 }
76}