-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.14 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.14 KB
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
103
104
{
"name": "@protokol/nft-exchange-api",
"version": "1.0.1",
"description": "REST API For Exchange NFT Functionality",
"license": "CC-BY-NC-SA-4.0",
"homepage": "https://docs.protokol.com/nft/",
"bugs": {
"url": "https://github.com/protokol/nft-plugins/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/protokol/nft-plugins.git"
},
"keywords": [
"protokol",
"ark",
"core",
"sdk",
"nft",
"blockchain"
],
"contributors": [
"Žan Kovač <zan@protokol.com",
"Amadej Pevec <amadej@protokol.com>",
"Kristjan Košič <kristjan@protokol.com>"
],
"files": [
"dist"
],
"main": "dist/index",
"types": "dist/index",
"scripts": {
"build": "yarn clean && tsc",
"build:watch": "yarn clean && yarn compile -w",
"clean": "rimraf .coverage dist tmp",
"test": "jest",
"test:unit": "jest __tests__/unit/** --forceExit",
"test:unit:coverage": "jest __tests__/unit --coverage",
"test:integration": "jest __tests__/integration --runInBand --forceExit",
"test:integration:coverage": "jest __tests__/integration --coverage --runInBand --forceExit",
"publish:beta": "yarn build && yarn npm publish --tag beta --access public --tolerate-republish",
"publish": "yarn build && yarn npm publish --access public --tolerate-republish"
},
"dependencies": {
"@arkecosystem/core-api": "^3.0.0",
"@arkecosystem/core-kernel": "^3.0.0",
"@hapi/boom": "^9.1.0",
"@hapi/hapi": "^20.0.2",
"@protokol/nft-exchange-crypto": "workspace:packages/nft-exchange-crypto",
"@protokol/nft-exchange-transactions": "workspace:packages/nft-exchange-transactions",
"joi": "^17.4.2",
"latest-version": "^5.1.0"
},
"devDependencies": {
"@arkecosystem/core-database": "^3.0.0",
"@arkecosystem/core-kernel": "^3.0.0",
"@arkecosystem/core-state": "^3.0.0",
"@arkecosystem/core-test-framework": "^3.0.0",
"@arkecosystem/core-transaction-pool": "^3.0.0",
"@arkecosystem/core-transactions": "^3.0.0",
"@arkecosystem/crypto": "^3.0.0",
"@protokol/nft-base-crypto": "workspace:packages/nft-base-crypto",
"@protokol/nft-base-transactions": "workspace:packages/nft-base-transactions",
"@protokol/nft-exchange-crypto": "workspace:packages/nft-exchange-crypto",
"@sindresorhus/tsconfig": "^2.0.0",
"@types/eslint": "^7.2.5",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/hapi__boom": "^7.4.1",
"@types/hapi__joi": "^17.1.6",
"@types/jest": "^27.0.0",
"@types/node": "^16.0.0",
"@types/prettier": "^2.1.5",
"@types/rimraf": "^4.0.0",
"@types/semver": "7.3.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"codecov": "^3.8.1",
"cross-env": "^7.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-jest": "^25.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.0.1",
"jest-extended": "^1.0.0",
"npm-check-updates": "~12.0.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "~27.0.1",
"typedoc": "~0.22.0",
"typescript": "~4.4.2"
},
"engines": {
"node": ">=12.x"
},
"publishConfig": {
"access": "public"
},
"arkecosystem": {
"core": {
"alias": "nft-exchange-api"
}
}
}