forked from signum-network/signumjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.05 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
{
"name": "signumjs",
"description": "Signum Network Javascript SDK",
"keywords": [
"signum",
"signum network",
"signa",
"blockchain",
"crypto",
"cryptocurrency",
"sdk",
"lib",
"library"
],
"contributors": [
"ohager",
"blankey1337"
],
"repository": {
"type": "git",
"url": "https://github.com/signum-network/signumjs"
},
"engines": {
"node": ">=14"
},
"license": "Apache-2.0",
"private": false,
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@convergencelabs/typedoc-plugin-custom-modules": "^0.3.0",
"@types/jest": "^24.0.23",
"axios-mock-adapter": "^1.16.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.8.1",
"custom-tslint-formatters": "^2.4.0",
"husky": "^7.0.1",
"jest": "^24.1.0",
"jsdoc-babel": "^0.5.0",
"lerna": "^3.22.1",
"regenerator-runtime": "^0.13.7",
"ts-jest": "^24.0.2",
"tslint": "^5.20.1",
"typedoc": "0.16.11",
"typescript": "3.8.3"
},
"scripts": {
"bootstrap": "lerna exec npm install && lerna bootstrap && lerna run tsc",
"build": "npm run tsc && lerna exec npm run bundle",
"clear": "lerna exec 'rm -rf node_modules out dist' && rm -rf node_modules",
"doc": "typedoc --options tsdoc.json --listInvalidSymbolLinks",
"lint": "tslint -p tsconfig.json -t stylish -s node_modules/custom-tslint-formatters/formatters -t grouped",
"postinstall": "npm run bootstrap",
"prepublish": "npm run build && npm run test",
"publish": "lerna publish --force-publish",
"test": "npm run tsc && jest",
"test:ci": "jest --coverage",
"test:e2e": "jest --config jest.config.e2e.js --runInBand --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"tsc": "lerna run tsc"
}
}