forked from convert-units/convert-units
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 809 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
{
"name": "convert-units",
"version": "2.3.4",
"description": "Convert between quantities in different units",
"main": "lib",
"dependencies": {
"lodash.foreach": "4.5.x",
"lodash.keys": "4.2.x"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"prettier": "2.2.1"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"linter": "eslint",
"formatter": "prettier --write lib"
},
"repository": {
"type": "git",
"url": "git://github.com/ben-ng/convert-units.git"
},
"keywords": [
"metric",
"imperial",
"convert",
"ratio",
"fraction"
],
"author": "Ben Ng <[email protected]> (http://benng.me)",
"license": "MIT"
}