This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 1.97 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": "@authereum/starkware-abi-encoder",
"description": "Starkware JSON-RPC Controller Library",
"version": "1.8.0-beta.7",
"author": "",
"license": "Apache-2.0",
"keywords": [
"stark",
"starkware",
"crypto",
"elliptic",
"curve",
"cryptography"
],
"files": [
"dist"
],
"contributors": [
"Pedro Gomes <github.com/pedrouid>",
"Miguel Mota <github.com/miguelmota>"
],
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"unpkg": "dist/umd/index.min.js",
"homepage": "https://github.com/authereum/starkware-monorepo/tree/master/packages/starkware-abi-encoder",
"repository": {
"type": "git",
"url": "git+https://github.com/authereum/starkware-monorepo.git"
},
"bugs": {
"url": "https://github.com/authereum/starkware-monorepo/issues"
},
"scripts": {
"start": "tsdx watch",
"clean": "rm -rf dist",
"build:cjs": "./node_modules/.bin/tsc -p tsconfig.cjs.json",
"build:umd": "webpack",
"build": "yarn clean && yarn build:cjs && yarn build:umd",
"test": "tsdx test ./test",
"lint": "prettier-standard --format",
"prepare": "yarn lint && yarn build",
"publish:beta": "npm publish --tag beta --access public",
"publish:next": "npm publish --tag next --access public",
"publish:latest": "npm publish --tag latest --access public",
"sync": "lerna-sync-version"
},
"dependencies": {
"@authereum/starkware-crypto": "1.10.0-beta.8",
"@babel/core": "^7.12.3",
"enc-utils": "^2.2.2",
"ethers": "^5.0.19"
},
"devDependencies": {
"@types/jest": "25.1.1",
"@types/node": "13.7.0",
"husky": "4.2.5",
"prettier-standard": "^16.4.1",
"tsdx": "0.13.2",
"tslib": "1.10.0",
"typescript": "3.7.5",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}