UNPKG

3.38 kBJSONView Raw
1{
2 "name": "bf-lib",
3 "version": "4.6.5",
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 "build:systemjs": "rollup -c",
27 "dev": "npx rollup -c rollup.serve.js -w"
28 },
29 "repository": {
30 "type": "git",
31 "url": "git+ssh://git@github.com/CouleeTech/bf-lib.git"
32 },
33 "keywords": [
34 "bf-lib",
35 "coulee",
36 "tech",
37 "block-5",
38 "standard",
39 "client",
40 "library"
41 ],
42 "author": "Coulee Tech",
43 "license": "MIT",
44 "bugs": {
45 "url": "https://github.com/CouleeTech/bf-lib/issues"
46 },
47 "homepage": "https://github.com/CouleeTech/bf-lib#readme",
48 "config": {
49 "commitizen": {
50 "path": "./node_modules/cz-conventional-changelog"
51 }
52 },
53 "lint-staged": {
54 "*.{js,ts,tsx}": [
55 "npm run lint"
56 ]
57 },
58 "jest": {
59 "moduleFileExtensions": [
60 "js",
61 "json",
62 "ts"
63 ],
64 "rootDir": "src",
65 "testRegex": ".spec.ts$",
66 "transform": {
67 "^.+\\.(t|j)s$": "ts-jest"
68 },
69 "coverageDirectory": "../coverage",
70 "testEnvironment": "node"
71 },
72 "dependencies": {
73 "@timwoods/handlebars": "^2.0.5",
74 "axios": "^0.21.0",
75 "decimal.js": "^10.2.1",
76 "deep-equal": "^2.0.5",
77 "deepmerge": "^4.2.2",
78 "luxon": "^1.26.0",
79 "voca": "^1.4.0"
80 },
81 "peerDependencies": {
82 "bf-types": "^5.4.0"
83 },
84 "devDependencies": {
85 "@commitlint/cli": "^12.1.1",
86 "@commitlint/config-conventional": "^12.1.1",
87 "@rollup/plugin-commonjs": "^21.0.1",
88 "@rollup/plugin-node-resolve": "^13.1.3",
89 "@rollup/plugin-typescript": "^8.3.0",
90 "@types/axios": "^0.14.0",
91 "@types/deep-equal": "^1.0.1",
92 "@types/jest": "^26.0.22",
93 "@types/luxon": "^1.26.4",
94 "@types/node": "^14.17.32",
95 "@types/voca": "^1.4.0",
96 "@typescript-eslint/eslint-plugin": "^4.22.0",
97 "@typescript-eslint/eslint-plugin-tslint": "^4.22.0",
98 "@typescript-eslint/parser": "^4.22.0",
99 "bf-types": "^5.42.1",
100 "commitizen": "^4.2.2",
101 "eslint": "^7.24.0",
102 "eslint-config-prettier": "^8.2.0",
103 "eslint-plugin-prettier": "^3.4.0",
104 "husky": "^6.0.0",
105 "jest": "^26.6.3",
106 "lint-staged": "^10.5.3",
107 "prettier": "^2.2.1",
108 "rimraf": "^3.0.2",
109 "rollup": "^2.63.0",
110 "rollup-plugin-livereload": "^2.0.5",
111 "rollup-plugin-peer-deps-external": "^2.2.4",
112 "rollup-plugin-terser": "^7.0.2",
113 "ts-jest": "^26.5.5",
114 "tslint": "^6.1.3",
115 "typescript": "^4.2.4"
116 }
117}