-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.73 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
{
"name": "symbol-nft-decoder",
"version": "0.2.2",
"description": "SDK to decode On-Chain-NFT data from Symbol Blockchain",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"node": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build:cjs": "tsc --build --clean && tsc --target es5 --module commonjs && mv lib dist/cjs",
"build:esm": "tsc --build --clean && tsc --target esnext --module esnext && mv lib dist/esm",
"build": "rm -rf dist ; mkdir dist && npm run build:cjs && npm run build:esm",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/next-web-technology/symbol-nft-decoder.git"
},
"keywords": [
"blockchain",
"symbol",
"nft",
"sdk"
],
"author": "next-web-technology <yasunori.matsuoka@next-web-technology.net> (https://next-web-technology.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/next-web-technology/symbol-nft-decoder/issues"
},
"homepage": "https://github.com/next-web-technology/symbol-nft-decoder#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^0.25.0",
"rxjs": "^7.5.2",
"symbol-sdk": "^1.0.3"
}
}