-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.25 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": "mass.js",
"version": "1.3.3",
"description": "ES Module for parsing and formatting mass units.",
"keywords": [
"mass",
"unit",
"imperial",
"metric",
"ton",
"pound",
"ounce",
"weight"
],
"homepage": "https://mass.tylervigario.com",
"bugs": {
"url": "https://github.com/TylerVigario/Mass.js/issues"
},
"repository": "github:TylerVigario/Mass.js",
"license": "MIT",
"author": {
"name": "Tyler Vigario",
"email": "tylervigario90@gmail.com"
},
"type": "module",
"main": "./lib/entries/US.js",
"scripts": {
"lint": "eslint --config .eslintrc.json lib/",
"test": "ava --verbose",
"test:coverage": "c8 ava"
},
"ava": {
"files": [
"test/**/*"
]
},
"c8": {
"all": true,
"include": [
"lib/"
],
"reporter": [
"lcov",
"text"
]
},
"devDependencies": {
"@tylervigario/performance": "github:TylerVigario/performance",
"ava": "^5.3.0",
"c8": "^8.0.0",
"eslint": "^8.42.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.7.1"
},
"engines": {
"node": "16 || 18 || >=20"
}
}