-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "atomicmarket",
"description": "js module to fetch data from the atomicmarket contract",
"keywords": [
"atomicmarket",
"atomicassets",
"nft",
"blockchain",
"eosio",
"pinknetwork"
],
"author": "pink.network",
"homepage": "https://atomicmarket.io",
"bugs": {
"url": "https://github.com/pinknetworkx/atomicmarket-js/issues",
"email": "pinknetworkx@gmail.com"
},
"license": "MIT",
"version": "1.1.2",
"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"
},
"dependencies": {
"atomicassets": "^1.4.0"
},
"devDependencies": {
"@types/node": "^14.17.5",
"node-fetch": "^2.6.1",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"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.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2"
}
}