-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.42 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": "qm-legacy",
"version": "1.2.0",
"description": "Legacy support for our utility scripts implementing async, functional, and immutable JavaScript.",
"main": "index.js",
"files": [
"coerceRealNumber.js",
"decimalPlaces.js",
"formatBytes.js",
"formatCurrency.js",
"formatDuration.js",
"formatNumber.js",
"functional-util.js",
"humanizeDuration.js",
"humanizeSessionDuration.js",
"immutable-optics.js",
"immutable-util.js",
"index.js",
"maybe.js",
"numberWithCommas.js",
"prefixWith.js",
"suffixWith.js",
"unitConversion.js",
"README.md"
],
"author": "Quantum Metric",
"license": "UNLICENSED",
"scripts": {
"lint": "standard",
"release": "semantic-release",
"test": "mocha *.test.mjs",
"test:coverage": "nyc npm t"
},
"repository": {
"type": "git",
"url": "https://github.com/quantummetric/qm-legacy.git"
},
"keywords": [
"functional",
"immutable",
"monad",
"maybe",
"optics"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"chai": "^5.1.0",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"semantic-release": "^24.1.1",
"standard": "^17.1.2"
},
"dependencies": {
"immutable": "^3.8.2",
"lodash.flowright": "^3.5.0",
"lodash.isfinite": "^3.3.2",
"lodash.tofinite": "^4.12.1",
"moment": "^2.29.1"
}
}