-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
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
{
"name": "stas-js",
"version": "3.0.3",
"description": "This library will create various types of STAS token transactions that add token functionality to the BSV blockchain.",
"main": "index.js",
"module": "dist/index",
"scripts": {
"test": "jest",
"test:functional:ci": "jest --testPathPattern=test/functional_test --runInBand",
"test:smoke:ci": "jest --testPathPattern=test/smoke_tests --runInBand",
"test:unit:ci": "jest --testPathPattern=test/unit_tests --runInBand",
"watch": "npm-watch",
"build": "rollup -c",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TAAL-GmbH/stas-js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TAAL-GmbH/stas-js/issues"
},
"homepage": "https://github.com/TAAL-GmbH/stas-js#readme",
"dependencies": {
"axios": "^0.21.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^10.0.0",
"jest-allure": "0.1.3",
"jest-html-reporter": "^3.4.2",
"node-fetch": "^2.6.6",
"test": "^0.6.0"
},
"peerDependencies": {
"bsv": "^1.5.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"axios-retry": "^3.2.4",
"bsv": "^1.5.4",
"jest": "^27.4.7",
"rollup": "^2.70.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.8.0",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.4"
},
"jest": {
"testRegex": "tests/.*\\.(js|jsx)$",
"testPathIgnorePatterns": [
"<rootDir>/test/mainnet_tests/",
"<rootDir>/test/functional_test/lifecycle_tests/lifecycleTest_1000Addresses_test.js",
"<rootDir>/test/functional_test/function_tests/swap_fewerSatsThanOfferedUTXO_test.js",
"<rootDir>test/functional_test/function_tests/mergeInvalidStasToken_test.js"
],
"verbose": true,
"testTimeout": 500000,
"setupFilesAfterEnv": [
"jest-allure/dist/setup"
],
"testRunner": "jest-jasmine2",
"reporters": [
"default",
[
"./node_modules/jest-html-reporter",
{
"pageTitle": "Test Report"
}
]
]
}
}