-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 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
{
"name": "@fioprotocol/fiojs",
"version": "1.0.2",
"description": "FioJS is a Utility SDK for packing, signing and encryption functionality for the FIO blockchain. It is used by the FIO TypeScript SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"cypress": "./scripts/run-cypress.sh",
"cypress-ui": "./scripts/run-cypress.sh ui",
"prepare": "npm run build",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint-fix": "tslint -c tslint.json -p tsconfig.json --fix",
"test": "jest 'src/tests/.*\\.test\\.ts' --testPathIgnorePatterns src/tests/*node*",
"test-node": "jest src/tests/*node*",
"test-all": "yarn test && yarn test-node && yarn cypress",
"build": "mkdir -p dist && cp -r src/ecc dist && tsc -p ./tsconfig.json",
"build-web": "webpack --config webpack.prod.js && webpack --config webpack.debug.js",
"build-production": "yarn build && yarn build-web && yarn test-all",
"clean": "rm -rf dist"
},
"author": "shawn@dapix.io",
"license": "MIT",
"dependencies": {
"ajv": "6.12.6",
"babel-runtime": "6.26.0",
"bigi": "1.4.2",
"browserify-aes": "1.2.0",
"bs58": "4.0.1",
"create-hash": "1.2.0",
"create-hmac": "1.1.7",
"ecurve": "1.0.6",
"long": "4.0.0",
"randombytes": "2.1.0",
"ripemd160": "2.0.2",
"text-encoding": "0.7.0"
},
"devDependencies": {
"@types/jest": "24.0.6",
"@types/lodash": "4.17.7",
"@types/node": "11.9.4",
"@types/text-encoding": "0.0.35",
"babel-cli": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-1": "6.24.1",
"cypress": "13.13.2",
"jest": "29.7.0",
"jest-fetch-mock": "2.1.2",
"json-loader": "0.5.7",
"lodash": "4.17.21",
"mocha": "5.2.0",
"mochawesome": "3.1.1",
"pretty-format": "29.7.0",
"ts-jest": "29.2.4",
"ts-loader": "5.3.3",
"tslint": "6.1.3",
"typescript": "4.9.5",
"webpack": "4.29.5",
"webpack-cli": "3.2.3"
},
"jest": {
"automock": false,
"setupFiles": [
"./src/tests/setupJest.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(tsx?)$": "ts-jest"
},
"testRegex": "(/src/.*(\\.|/)(test|spec|nodetest))\\.(jsx?|tsx?)$",
"testEnvironment": "node"
}
}