1 | {
|
2 | "name": "@naturalcycles/nodejs-lib",
|
3 | "version": "12.70.0",
|
4 | "scripts": {
|
5 | "prepare": "husky install",
|
6 | "docs-serve": "vuepress dev docs",
|
7 | "docs-build": "vuepress build docs",
|
8 | "slack-this-debug": "tsn ./src/bin/slack-this.ts --channel test --msg 'Hello slack!'",
|
9 | "secrets-gen-key-debug": "tsn ./src/bin/secrets-gen-key.ts",
|
10 | "secrets-encrypt-debug": "tsn ./src/bin/secrets-encrypt.ts",
|
11 | "secrets-decrypt-debug": "tsn ./src/bin/secrets-decrypt.ts",
|
12 | "kpy-debug": "tsn ./src/bin/kpy.ts node_modules dist",
|
13 | "del-debug": "tsn ./src/bin/del.ts dist --verbose --debug",
|
14 | "json2env-debug": "tsn ./src/bin/json2env.ts ./src/test/someFile.json"
|
15 | },
|
16 | "dependencies": {
|
17 | "@naturalcycles/js-lib": "^14.0.0",
|
18 | "@types/lru-cache": "^7.4.0",
|
19 | "@types/through2-concurrent": "^2.0.0",
|
20 | "ajv": "^8.6.2",
|
21 | "ajv-formats": "^2.1.0",
|
22 | "ajv-keywords": "^5.0.0",
|
23 | "ajv-merge-patch": "^5.0.1",
|
24 | "binary-split": "^1.0.5",
|
25 | "chalk": "^4.0.0",
|
26 | "cp-file": "^9.0.0",
|
27 | "debug": "^4.1.1",
|
28 | "dotenv": "^16.0.0",
|
29 | "execa": "^5.0.0",
|
30 | "fs-extra": "^10.0.0",
|
31 | "globby": "^11.0.0",
|
32 | "got": "^11.0.1",
|
33 | "joi": "17.4.2",
|
34 | "lru-cache": "^7.4.0",
|
35 | "move-file": "^2.0.0",
|
36 | "nanoid": "^3.0.0",
|
37 | "through2-concurrent": "^2.0.0",
|
38 | "yargs": "^17.0.0"
|
39 | },
|
40 | "devDependencies": {
|
41 | "@naturalcycles/bench-lib": "^1.0.7",
|
42 | "@naturalcycles/dev-lib": "^12.0.0",
|
43 | "@types/node": "^17.0.0",
|
44 | "@types/yargs": "^16.0.0",
|
45 | "jest": "^27.0.1",
|
46 | "nock": "^13.0.2",
|
47 | "patch-package": "^6.2.1",
|
48 | "prettier": "^2.0.0",
|
49 | "vue-class-component": "^7.2.6",
|
50 | "vuepress": "^1.7.1",
|
51 | "vuepress-plugin-typescript": "^0.3.1",
|
52 | "weak-napi": "^2.0.0"
|
53 | },
|
54 | "resolutions": {
|
55 | "prettier": "^2.0.0"
|
56 | },
|
57 | "bin": {
|
58 | "del": "dist/bin/del.js",
|
59 | "kpy": "dist/bin/kpy.js",
|
60 | "json2env": "dist/bin/json2env.js",
|
61 | "slack-this": "dist/bin/slack-this.js",
|
62 | "secrets-gen-key": "dist/bin/secrets-gen-key.js",
|
63 | "secrets-encrypt": "dist/bin/secrets-encrypt.js",
|
64 | "secrets-decrypt": "dist/bin/secrets-decrypt.js"
|
65 | },
|
66 | "files": [
|
67 | "dist",
|
68 | "src",
|
69 | "!src/test",
|
70 | "!src/**/*.test.ts",
|
71 | "!src/**/__snapshots__",
|
72 | "!src/**/__exclude"
|
73 | ],
|
74 | "main": "dist/index.js",
|
75 | "types": "dist/index.d.ts",
|
76 | "publishConfig": {
|
77 | "access": "public"
|
78 | },
|
79 | "repository": {
|
80 | "type": "git",
|
81 | "url": "https://github.com/NaturalCycles/nodejs-lib"
|
82 | },
|
83 | "engines": {
|
84 | "node": ">=14.15.0"
|
85 | },
|
86 | "description": "Standard library for Node.js",
|
87 | "author": "Natural Cycles Team",
|
88 | "license": "MIT"
|
89 | }
|