forked from indutny/bn.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 872 Bytes
/
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
{
"name": "bn.js",
"version": "5.1.3",
"description": "Big number implementation in pure javascript",
"keywords": [
"BN",
"Big number",
"BigNum",
"Modulo",
"Montgomery"
],
"homepage": "https://github.com/indutny/bn.js",
"bugs": {
"url": "https://github.com/indutny/bn.js/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:indutny/bn.js"
},
"license": "MIT",
"author": "Fedor Indutny <[email protected]>",
"files": [
"lib/bn.js"
],
"main": "lib/bn.js",
"browser": {
"buffer": false
},
"scripts": {
"lint": "standardx",
"test": "npm run lint && npm run unit",
"unit": "mocha --reporter=spec test/*-test.js"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"mocha": "^7.0.1",
"standardx": "^5.0.0"
},
"standardx": {
"parser": "babel-eslint"
}
}