This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 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
{
"name": "fixed-bn.js",
"version": "0.0.2",
"description": "bn.js wrapper that constrains numbers to a fixed width",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "ethereumjs-config-build",
"prepublishOnly": "npm run test && npm run build",
"coverage": "ethereumjs-config-coverage",
"coveralls": "ethereumjs-config-coveralls",
"format": "ethereumjs-config-format",
"format:fix": "ethereumjs-config-format-fix",
"tslint": "ethereumjs-config-tslint",
"tslint:fix": "ethereumjs-config-tslint-fix",
"tsc": "ethereumjs-config-tsc",
"lint": "ethereumjs-config-lint",
"lint:fix": "ethereumjs-config-lint-fix",
"unitTests": "npm run build && tape ./tests/*.js",
"test": "npm run lint && npm run unitTests",
"test:fix": "npm run lint:fix && npm run unitTests",
"docs:build": "typedoc --out docs --mode file --readme none --theme markdown --mdEngine github --gitRevision master --excludeNotExported src/*.ts"
},
"keywords": [
"bn.js"
],
"author": "mjbecze <[email protected]>",
"license": "MPL-2.0",
"devDependencies": {
"@ethereumjs/config-nyc": "^1.1.1",
"@ethereumjs/config-prettier": "^1.1.1",
"@ethereumjs/config-tsc": "^1.1.1",
"@ethereumjs/config-tslint": "^1.1.1",
"@types/bn.js": "^4.11.4",
"@types/node": "^11.11.3",
"@types/tape": "^4.2.33",
"coveralls": "^3.0.0",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"tape": "^4.6.3",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.1.27",
"typescript": "^3.3.3333",
"typestrict": "^1.0.2"
},
"repository": {
"type": "git",
"url": "[email protected]:ewasm/fixed-bn.js.git"
},
"bugs": {
"url": "https://github.com/ewasm/fixed-bn.js/issues"
},
"homepage": "https://github.com/ewasm/fixed-bn.js",
"dependencies": {
"bn.js": "^4.11.8",
"is-hex-prefixed": "^1.0.0",
"strip-hex-prefix": "^1.0.0"
}
}