forked from onflow/flow-js-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.96 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
{
"name": "flow-js-testing",
"version": "0.1.13",
"description": "This package will expose a set of utility methods, to allow Cadence code testing with libraries like Jest",
"repository": {
"type": "git",
"url": "https://github.com/onflow/flow-js-testing"
},
"bin": "./bin/index.js",
"scripts": {
"build": "microbundle",
"generate-code": "rm -rf ./src/generated && node_modules/.bin/flow-generate ./cadence ./src/generated ../../",
"lint": "eslint -c .eslintrc.js src",
"check-headers": "sh ./check-headers.sh",
"prettify": "prettier --write ./src",
"prepublishOnly": "npm test && npm run build",
"start": "microbundle watch",
"test": "jest"
},
"keywords": [
"flow",
"cadence",
"testing"
],
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"sideEffects": false,
"author": "Maksim Daunarovich",
"license": "Apache-2.0",
"prettier": {
"printWidth": 100,
"endOfLine": "lf",
"semi": true,
"useTabs": false,
"singleQuote": false,
"trailingComma": "all",
"tabWidth": 2
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"testMatch": [
"**/test/?(*.)+(spec|test).[jt]s?(x)"
]
},
"dependencies": {
"@onflow/config": "^0.0.2",
"@onflow/fcl": "^0.0.76",
"@onflow/fcl-config": "^0.0.1",
"@onflow/types": "^0.0.5",
"elliptic": "^6.5.4",
"esm": "^3.2.25",
"flow-cadut": "^0.1.6",
"jest-environment-uint8array": "^1.0.0",
"rimraf": "^3.0.2",
"rlp": "^2.2.6",
"sha3": "^2.1.4",
"yargs": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"babel-jest": "^27.0.2",
"eslint": "^7.24.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.3",
"jest-esm-transformer": "^1.0.0",
"microbundle": "^0.13.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
}
}