UNPKG

3.01 kBJSONView Raw
1{
2 "name": "bf-lib",
3 "version": "4.3.6",
4 "private": false,
5 "description": "the standard client library for block-5 software",
6 "scripts": {
7 "build": "tsc -p tsconfig.build.json",
8 "build:clean": "npm run clean && npm run build",
9 "check": "tsc -p tsconfig.check.json -noEmit",
10 "clean": "rimraf index.js index.d.ts lib api auth common livesync module multitool system",
11 "commit": "git-cz",
12 "format": "prettier --write \"src/**/*.{ts,js,json}\"",
13 "lint": "eslint \"./src/**/*.{js,ts,tsx}\" --fix",
14 "lint-staged": "lint-staged",
15 "postversion": "git push && git push --tags",
16 "prepare": "husky install && npm test && npm run lint && npm run build:clean",
17 "preversion": "npm run lint",
18 "test": "jest",
19 "test:watch": "jest --watch",
20 "test:cov": "jest --coverage",
21 "version": "npm run format && git add -A src",
22 "patchpub": "npm version patch && npm publish",
23 "minorpub": "npm version minor && npm publish",
24 "majorpub": "npm version major && npm publish",
25 "postpublish": "npm run clean"
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+ssh://git@github.com/CouleeTech/bf-lib.git"
30 },
31 "keywords": [
32 "bf-lib",
33 "coulee",
34 "tech",
35 "block-5",
36 "standard",
37 "client",
38 "library"
39 ],
40 "author": "Coulee Tech",
41 "license": "MIT",
42 "bugs": {
43 "url": "https://github.com/CouleeTech/bf-lib/issues"
44 },
45 "homepage": "https://github.com/CouleeTech/bf-lib#readme",
46 "config": {
47 "commitizen": {
48 "path": "./node_modules/cz-conventional-changelog"
49 }
50 },
51 "lint-staged": {
52 "*.{js,ts,tsx}": [
53 "npm run lint"
54 ]
55 },
56 "jest": {
57 "moduleFileExtensions": [
58 "js",
59 "json",
60 "ts"
61 ],
62 "rootDir": "src",
63 "testRegex": ".spec.ts$",
64 "transform": {
65 "^.+\\.(t|j)s$": "ts-jest"
66 },
67 "coverageDirectory": "../coverage",
68 "testEnvironment": "node"
69 },
70 "dependencies": {
71 "@timwoods/handlebars": "^2.0.5",
72 "axios": "^0.21.0",
73 "decimal.js": "^10.2.1",
74 "deep-equal": "^2.0.5",
75 "deepmerge": "^4.2.2",
76 "luxon": "^1.26.0",
77 "voca": "^1.4.0"
78 },
79 "peerDependencies": {
80 "bf-types": "^5.4.0"
81 },
82 "devDependencies": {
83 "@commitlint/cli": "^12.1.1",
84 "@commitlint/config-conventional": "^12.1.1",
85 "@types/axios": "^0.14.0",
86 "@types/deep-equal": "^1.0.1",
87 "@types/jest": "^26.0.22",
88 "@types/luxon": "^1.26.4",
89 "@types/node": "^14.14.41",
90 "@types/voca": "^1.4.0",
91 "@typescript-eslint/eslint-plugin": "^4.22.0",
92 "@typescript-eslint/eslint-plugin-tslint": "^4.22.0",
93 "@typescript-eslint/parser": "^4.22.0",
94 "bf-types": "^5.29.22",
95 "commitizen": "^4.2.2",
96 "eslint": "^7.24.0",
97 "eslint-config-prettier": "^8.2.0",
98 "eslint-plugin-prettier": "^3.4.0",
99 "husky": "^6.0.0",
100 "jest": "^26.6.3",
101 "lint-staged": "^10.5.3",
102 "prettier": "^2.2.1",
103 "rimraf": "^3.0.2",
104 "ts-jest": "^26.5.5",
105 "tslint": "^6.1.3",
106 "typescript": "^4.2.4"
107 }
108}