-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
41 lines (41 loc) · 985 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
{
"name": "@bitfinexcom/lib-js-util-base",
"version": "1.19.0",
"description": "general utils",
"main": "index.js",
"scripts": {
"coverage": "nyc --reporter=html mocha test/",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run test:unit",
"test:unit": "NODE_ENV=test mocha test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitfinexcom/lib-js-util-base.git"
},
"keywords": [
"utils"
],
"author": {
"name": "prdn",
"email": "[email protected]"
},
"maintainers": [
{
"name": "vigan.abd",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitfinexcom/lib-js-util-base/issues"
},
"homepage": "https://github.com/bitfinexcom/lib-js-util-base#readme",
"devDependencies": {
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"standard": "^17.1.0",
"mocha-it-each": "^1.0.2"
}
}