-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "pqm",
"version": "1.0.0",
"description": "Physical Quantities and Measures (PQM) is a Node and browser package for dealing with numbers with units",
"type": "module",
"main": "./build/cjs/pqm.cjs",
"directories": {
"test": "test"
},
"exports": {
"import": "./build/es/pqm.mjs",
"require": "./build/cjs/pqm.cjs"
},
"readmeFilename": "README.md",
"scripts": {
"test": "node node_modules/c8/bin/c8.js node test/node/test.mjs",
"coverage": "node node_modules/c8/bin/c8.js report --reporter html",
"testbrowser": "node test/browser/testserver.mjs"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/GhostWrench/pqm.git"
},
"keywords": [
"unit",
"units",
"physics",
"physical",
"quantities",
"measure",
"dimensions",
"dimensional",
"analysis",
"si",
"cgs",
"imperial",
"metric"
],
"author": "Daniel Kuntz <daniel.kuntz@ghostwrench.net>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/GhostWrench/pqm/issues"
},
"homepage": "/~https://github.com/GhostWrench/pqm#readme",
"devDependencies": {
"c8": "^7.1.2",
"rollup": "^3.7.5",
"terser": "^5.16.1"
}
}