-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "@adshares/ads-client",
"version": "1.0.2",
"display-name": "ADS JS Client",
"description": "JavaScript ES2015 client for the ADS blockchain API.",
"author": "Adshares <[email protected]>",
"license": "GPL-3.0",
"type": "module",
"keywords": [
"adshares",
"ads"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adshares/ads-js-client.git"
},
"bugs": {
"url": "https://github.com/adshares/ads-js-client/issues"
},
"homepage": "https://github.com/adshares/ads-js-client#readme",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w --environment BUILD:dev",
"test": "jest tests",
"pretest": "npm run build",
"lint": "eslint src tests *.js"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"jest": "^27.3.1",
"jest-fetch-mock": "^3.0.3",
"rollup": "^2.58.1"
},
"dependencies": {
"@adshares/ads": "^1.0.3",
"@babel/runtime": "^7.15.4",
"jsonrpc-lite": "^2.2.0"
},
"jest": {
"automock": false,
"setupFiles": [
"./tests/bootstrap.js"
]
}
}