-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "@vyper-protocol/rust-decimal-wrapper",
"version": "0.1.3",
"description": "A typescript node module to deserialize rust Decimal values",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint -c .eslintrc.js src/**/*.ts",
"prettify": "prettier -w ./src",
"prettify-check": "prettier -c ./src",
"precommit": "yarn prettify && yarn lint",
"prepublish": "yarn run build",
"test": "ts-mocha tests/**/*.ts -t 100000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vyper-protocol/rust-decimal-wrapper.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"package.json",
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vyper-protocol/rust-decimal-wrapper/issues"
},
"homepage": "https://github.com/vyper-protocol/rust-decimal-wrapper#readme",
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^18.7.13",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.5"
}
}