-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "loopback4-rpublishing",
"version": "0.0.1",
"author": "Theo Hallenius",
"description": "A loopback4 extension for RChain",
"keywords": [
"loopback-extension",
"loopback",
"rchain",
"nft"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "npm run clean && lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"coverage": "lb-nyc npm run test",
"coverage:ci": "lb-nyc report --reporter=text-lcov | coveralls",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcefuse/loopback4-soft-delete"
},
"license": "MIT",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"peerDependencies": {
"@loopback/boot": "^3.4.0",
"@loopback/context": "^3.16.0",
"@loopback/repository": "^3.16.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^12.1.2",
"@loopback/boot": "^3.4.0",
"@loopback/build": "^6.4.0",
"@loopback/cli": "^2.21.0",
"@loopback/context": "^3.16.0",
"@loopback/repository": "^3.6.0",
"@loopback/testlab": "^3.4.0",
"@loopback/tslint-config": "^2.1.0",
"@types/elliptic": "^6.4.14",
"@types/node": "^10.17.59",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.2.0",
"cz-customizable": "^6.2.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^3.0.2",
"eslint-plugin-mocha": "^8.1.0",
"husky": "^4.2.5",
"loopback-datasource-juggler": "^4.21.2",
"minimist": ">=0.2.1",
"source-map-support": "^0.5.19",
"typescript": "~4.2.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@loopback/core": "^2.16.0",
"@loopback/rest": "^9.3.0",
"elliptic": "^6.5.4",
"lodash": "^4.17.21",
"loopback4-authentication": "^4.6.0",
"rchain-token": "https://github.com/r-publishing/rchain-token.git",
"rchain-toolkit": "^0.3.2"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}