forked from starkware-libs/starkex-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.15 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@starkware-industries/starkex-js",
"version": "0.0.6",
"description": "`starkex-js` is a JavaScript wrapper around the [StarkEx API](https://starkware.co/starkex/api/) that can be used in both NodeJS and Browser environments.",
"keywords": [
"starkware",
"starkex",
"javascript",
"typescript",
"node",
"browser",
"sdk",
"api",
"blockchain",
"etherium"
],
"homepage": "https://github.com/starkware-libs/starkex-js#readme",
"bugs": {
"url": "https://github.com/starkware-libs/starkex-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starkware-libs/starkex-js.git"
},
"license": "ISC",
"author": "Dan Ziv",
"main": "dist/browser.js",
"module": "dist/node.js",
"types": "dist/types/index.t.ts",
"directories": {
"doc": "docs"
},
"files": [
"dist",
"package.json",
"lib",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production webpack --mode=production",
"precommit": "lint-staged",
"start": "cross-env NODE_ENV=development webpack serve",
"typecheck": "tsc --noemit",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"lint": "yarn run eslint && yarn run typecheck",
"format": "prettier --write \"**/*.+(ts|js|json|md|html|yml)\"",
"release": "standard-version",
"release:dry": "standard-version --dry-run",
"docs:generate": "typedoc",
"docs:watch": "typedoc --watch",
"node": "node src/server.js",
"pre-release": "standard-version --prerelease --skip.changelog",
"pushTaggedRelease": "git push --follow-tags --no-verify origin master",
"publish": "bash ./scripts/npm-publish.bash",
"test": "mocha"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|js|jsx)": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"*.+(json|scss|css|md)": [
"prettier --write"
]
},
"dependencies": {
"axios": "^0.21.1",
"https": "^1.0.0",
"js-logger": "^1.6.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@types/axios": "^0.14.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"mocha": "^9.2.0",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.2.5",
"typedoc": "^0.22.6",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.3.5",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-beta.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"standard-version": {
"scripts": {
"postcommit": "bash ./scripts/docs-publish.bash"
}
}
}