-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
83 lines (83 loc) · 2.62 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
80
81
82
83
{
"name": "@chainlink/functions-toolkit",
"private": false,
"version": "0.3.2",
"description": "An NPM package with collection of functions that can be used for working with Chainlink Functions.",
"main": "./dist/index.js",
"scripts": {
"build": "rimraf dist && tsc -P tsconfig.build.json && cpy src/simulateScript/deno-sandbox/**/* dist/simulateScript/deno-sandbox && yarn build:browser",
"build:browser": "webpack && browserify dist/frontendSimulateScript.bundle.js -o dist/simulateScript.browser.js -p esmify --standalone simulateScript && rm dist/frontendSimulateScript.bundle.js",
"test": "jest",
"test:ci": "jest --silent --ci --coverage",
"test:package": "jest --config jest.config.package.js",
"lint:check": "eslint '{src,test}/**/*.ts' && tsc --noEmit",
"lint:fix": "eslint '{src,test}/**/*.ts' --fix",
"lint:ci": "eslint '{src,test}/**/*.ts' --max-warnings=0 -f json -o eslint-report.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartcontractkit/functions-toolkit.git"
},
"keywords": [
"chainlink",
"functions",
"blockchain",
"oracle"
],
"author": "Morgan Kuphal (@KuphJr) & Zubin Pratap (@ZeusLawyer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartcontractkit/functions-toolkit/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/smartcontractkit/functions-toolkit#readme",
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/preset-env": "7.21.5",
"@babel/preset-typescript": "7.21.5",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@types/prettier": "^2.7.3",
"babel-loader": "9.1.2",
"browserify": "17.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"cpy-cli": "^5.0.0",
"esmify": "2.1.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.5.0",
"nock": "^13.3.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"webpack": "5.82.1",
"webpack-cli": "5.1.1"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid",
"proseWrap": "preserve"
},
"dependencies": {
"axios": "^1.4.0",
"bcrypto": "^5.4.0",
"cbor": "^9.0.1",
"eth-crypto": "^2.6.0",
"ethers": "^5.7.2",
"ganache": "^7.9.1",
"uniq": "^1.0.1"
}
}