-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 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
62
63
64
{
"name": "polyconvert",
"version": "4.0.2",
"description": "A library of functions for converting between different units of measurement.",
"funding": "https://github.com/sponsors/jgphilpott",
"main": "polyconvert.js",
"scripts": {
"test": "jest",
"compile": "coffee -cb polyconvert.coffee",
"compile:watch": "coffee -cbw polyconvert.coffee &",
"compress": "uglifyjs polyconvert.js -o polyconvert.min.js --compress",
"unexport": "sed -i.bak \"s/module\\.exports\\s*=\\s*\\(.*\\);/window.\\1 = \\1;/g\" polyconvert.min.js",
"package": "npm run compile && npm run compress && npm run unexport"
},
"repository": {
"type": "git",
"url": "https://github.com/jgphilpott/polyconvert"
},
"keywords": [
"poly",
"polyconvert",
"polyconverter",
"polyconversion",
"convert",
"converter",
"conversion",
"invert",
"inverter",
"inversion",
"measurement",
"ruler",
"angle",
"area",
"data",
"density",
"dimension",
"energy",
"frequency",
"illumination",
"length",
"magnetomotive",
"mass",
"pressure",
"radiation",
"speed",
"temperature",
"time",
"volume"
],
"author": {
"name": "Jacob Philpott",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jgphilpott/polyconvert/issues"
},
"homepage": "https://github.com/jgphilpott/polyconvert#readme",
"devDependencies": {
"coffeescript": "^2.7.0",
"jest": "^29.7.0",
"uglify-js": "^3.19.3"
}
}