forked from pinknetworkx/atomicassets-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "atomicassets",
"description": "js module to fetch data from the atomicassets NFT standard",
"keywords": ["atomicassets", "nft", "blockchain", "eosio", "pinknetwork"],
"author": "pink.network",
"homepage": "https://atomicassets.io",
"bugs": {
"url" : "https://github.com/pinknetworkx/atomicassets-js/issues",
"email" : "pinknetworkx@gmail.com"
},
"license": "MIT",
"version": "1.4.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build:npm": "tsc",
"build:web": "webpack --config webpack.prod.js",
"build": "yarn run build:npm && yarn run build:web",
"lint": "tslint -p tsconfig.json",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"publish": "yarn run build && yarn publish"
},
"dependencies": {
"big-integer": "^1.6.48",
"pure-cache": "^1.0.5"
},
"devDependencies": {
"@types/node": "^14.14.44",
"@types/mocha": "^8.2.2",
"@types/chai": "^4.2.18",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"tslint": "^5.20.1",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-origin-ordered-imports-rule": "^1.2.2",
"typescript": "^4.2.4",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"node-fetch": "^2.6.1"
}
}