-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "unitsnet-js",
"version": "3.0.27",
"definitionVersion": "5.61.0",
"description": "A better way to hold unit variables and easily convert to the destination unit",
"scripts": {
"prepublishOnly": "npm run generate && npm run test",
"build": "tsc",
"generate": "cd generator-scripts && npm run generate && cd .. && npm run build",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"cover": "node \"node_modules/nyc/bin/nyc.js\" --reporter=lcov --reporter=text-summary npm run test"
},
"main": "dist/index.js",
"files": [
"dist"
],
"directories": {
"lib": "dist"
},
"repository": {
"type": "git",
"url": "git://github.com/haimkastner/unitsnet-js.git"
},
"homepage": "https://github.com/haimkastner/unitsnet-js",
"author": "Haim Kastner, Based on UnitsNet Project",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.62",
"@types/numeral": "^2.0.5",
"axios": "^1.7.2",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"numeral": "^2.0.6",
"nyc": "^15.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"xml2js": "^0.6.2"
},
"dependencies": {},
"keywords": [
"conversion",
"units-of-measure",
"units",
"quantities",
"unit-converter",
"converter",
"unit",
"measure",
"measures",
"measurement",
"measurements"
]
}