UNPKG

1.65 kBJSONView Raw
1{
2 "name": "@biggy/recsys",
3 "version": "1.6.1",
4 "description": "RecSys library for our integration and front-end projects.",
5 "main": "dist/lib/index.js",
6 "types": "dist/lib/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",
12 "test": "ENABLE_LOGS=false jest",
13 "format": "prettier --config '.prettierrc.json' --ignore-path '.prettierignore' --write 'src/**/*' 'test/**/*' 'build/tasks/**/*'",
14 "lint": "tslint -c 'tslint.json' -p 'tsconfig.json' 'src/**/*.ts' 'test/**/*.ts'",
15 "update:base-store": "git submodule foreach git pull origin master"
16 },
17 "bin": {
18 "recsys": "./bin/recsys.js"
19 },
20 "husky": {
21 "hooks": {
22 "pre-commit": "pretty-quick --staged && yarn lint"
23 }
24 },
25 "dependencies": {
26 "aws-sdk": "^2.294.0",
27 "chalk": "^2.4.1",
28 "commander": "^2.19.0",
29 "consola": "^2.3.0",
30 "es6-promise": "^4.2.5",
31 "fs-extra": "^7.0.1",
32 "inquirer": "^6.2.1",
33 "rollup": "^0.67.4",
34 "rollup-plugin-commonjs": "^9.2.0",
35 "rollup-plugin-node-resolve": "^4.0.0",
36 "rollup-plugin-terser": "^3.0.0",
37 "rollup-plugin-typescript": "^1.0.0",
38 "tslib": "^1.9.3",
39 "typescript": "^3.2.2",
40 "unfetch": "^4.0.1"
41 },
42 "devDependencies": {
43 "@types/jest": "^23.3.10",
44 "@types/node-fetch": "^2.1.4",
45 "eslint": "^5.10.0",
46 "eslint-config-google": "^0.11.0",
47 "husky": "^1.2.1",
48 "jest": "^23.6.0",
49 "node-fetch": "^2.3.0",
50 "prettier": "^1.15.3",
51 "pretty-quick": "^1.8.0",
52 "ts-jest": "^23.10.5",
53 "tslint": "^5.11.0"
54 }
55}