-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "js-quantities",
"main": "./build/quantities.js",
"exports": {
".": {
"import": "./build/quantities.mjs",
"require": "./build/quantities.js"
},
"./esm": "./build/quantities.mjs"
},
"readmeFilename": "README.md",
"description": "JavaScript library for quantity calculation and unit conversion",
"version": "1.8.0",
"homepage": "http://gentooboontoo.github.io/js-quantities/",
"repository": {
"type": "git",
"url": "https://github.com/gentooboontoo/js-quantities.git"
},
"keywords": [
"conversion",
"convert",
"imperial",
"measure",
"measurement",
"metric",
"parse",
"parser",
"physical",
"quantity",
"quantities",
"temperature",
"unit",
"units"
],
"author": "Julien Sanchez <[email protected]>",
"contributors": [
"Julien Sanchez <[email protected]>",
"Rage Shadowman <[email protected]>"
],
"license": "MIT",
"scripts": {
"test": "jasmine-node spec/"
},
"bugs": {
"url": "https://github.com/gentooboontoo/js-quantities/issues"
},
"devDependencies": {
"eslint": "^7.15.0",
"jasmine": "^3.6.3",
"rollup": "^2.34.2"
}
}