-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.9 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.9 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
{
"name": "biggystring",
"version": "4.2.3",
"description": "Full floating point big number library using regular Javascript string",
"keywords": [
"big",
"number",
"string",
"floating point"
],
"homepage": "https://edge.app",
"repository": {
"type": "git",
"url": "git@github.com:EdgeApp/biggystring.git"
},
"license": "ISC",
"author": "Airbitz, Inc.",
"contributors": [
"Paul Puey <paul@airbitz.co>"
],
"types": "./lib/src/index.d.ts",
"main": "./lib/src/index.js",
"files": [
"lib/*",
"package.json",
"readme.md"
],
"scripts": {
"build": "tsc",
"cover": "nyc --reporter=lcov --reporter=text --reporter=html --extension .js npm test",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"fix": "npm run lint -- --fix",
"precommit": "lint-staged && npm run build && npm test",
"prepare": "husky install && npm run build",
"test": "mocha"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"dependencies": {
"bn.js": "^4.11.7"
},
"devDependencies": {
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": ">=2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"chai": "^4.3.7",
"eslint": ">=6.2.2",
"eslint-config-standard-kit": ">=0.14.4",
"eslint-plugin-import": ">=2.18.0",
"eslint-plugin-json-files": "^1.4.0",
"eslint-plugin-node": ">=9.1.0",
"eslint-plugin-prettier": ">=3.0.0",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-react": ">=7.14.2",
"eslint-plugin-simple-import-sort": ">=4.0.0",
"eslint-plugin-standard": ">=4.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.1.0",
"prettier": "^2.0.5",
"sucrase": "^3.12.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}