UNPKG

2.12 kBJSONView Raw
1{
2 "name": "@biggy/recsys",
3 "version": "1.18.1",
4 "description": "RecSys library for our integration and front-end projects.",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "author": "Biggy <webmaster@biggy.com.br>",
8 "license": "UNLICENSED",
9 "scripts": {
10 "build": "tsc -p 'tsconfig.json'",
11 "clean": "rm -rf dist tsconfig.tsbuildinfo",
12 "test": "ENABLE_LOGS=false jest",
13 "format": "prettier --config '.prettierrc.json' --ignore-path '.prettierignore' --write 'src/**/*' 'bin/**/*'",
14 "lint": "eslint 'src/**/*.ts' 'bin/**/*.{js,ts}' --ignore-pattern 'bin/base-store/**/*'",
15 "prepublishy": "cp -r ./dist/* .",
16 "update:base-store": "git submodule update --init --recursive"
17 },
18 "bin": {
19 "recsys": "./bin/recsys.js"
20 },
21 "lint-staged": {
22 "*.{js(x)?,ts(x)}": [
23 "eslint",
24 "prettier --write"
25 ],
26 "*.{md,json}": [
27 "prettier --write"
28 ]
29 },
30 "husky": {
31 "hooks": {
32 "pre-commit": "lint-staged"
33 }
34 },
35 "dependencies": {
36 "@rollup/plugin-commonjs": "^11.1.0",
37 "@rollup/plugin-json": "^4.0.3",
38 "@rollup/plugin-node-resolve": "^7.1.3",
39 "@rollup/plugin-replace": "^2.3.2",
40 "@rollup/plugin-typescript": "^4.1.1",
41 "aws-sdk": "^2.660.0",
42 "chalk": "^4.0.0",
43 "commander": "^5.0.0",
44 "consola": "^2.11.3",
45 "dotenv": "^8.2.0",
46 "es6-promise": "^4.2.8",
47 "fs-extra": "^9.0.0",
48 "inquirer": "^7.1.0",
49 "mongoose": "^5.9.10",
50 "rollup": "^2.7.1",
51 "rollup-plugin-terser": "^5.3.0",
52 "tslib": "^1.11.1",
53 "typescript": "^3.8.3",
54 "unfetch": "^4.1.0",
55 "update-notifier": "^4.1.0"
56 },
57 "devDependencies": {
58 "@types/jest": "^25.2.1",
59 "@types/node-fetch": "^2.5.6",
60 "@typescript-eslint/eslint-plugin": "^2.29.0",
61 "@typescript-eslint/parser": "^2.29.0",
62 "eslint": "^6.8.0",
63 "eslint-config-google": "^0.14.0",
64 "eslint-config-prettier": "^6.11.0",
65 "eslint-plugin-prettier": "^3.1.3",
66 "husky": "^4.2.5",
67 "jest": "^25.4.0",
68 "lint-staged": "^10.1.7",
69 "node-fetch": "^2.6.0",
70 "prettier": "^2.0.5",
71 "ts-jest": "^25.4.0"
72 }
73}