-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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": "ts-quantities",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/luc-freyermuth/ts-quantities"
},
"readmeFilename": "README.md",
"description": "JavaScript and Typescript library for quantity calculation and unit conversion",
"version": "2.1.1",
"keywords": [
"conversion",
"convert",
"imperial",
"measure",
"measurement",
"metric",
"parse",
"parser",
"physical",
"quantity",
"quantities",
"temperature",
"unit",
"units",
"javascript",
"typescript"
],
"author": "Luc Freyermuth <[email protected]>",
"contributors": [
"Julien Sanchez <[email protected]>",
"Rage Shadowman <[email protected]>"
],
"license": "MIT",
"scripts": {
"test": "jasmine-node spec/",
"lint": "tslint --project .",
"build": "tsc -p .",
"watch": "tsc -w -p ."
},
"devDependencies": {
"jasmine-node": "^3.0.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}