-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "temperatures",
"version": "0.0.1",
"description": "Node module for converting temperatures",
"main": "./dist/index.js",
"typings": "./src/index.d.ts",
"scripts": {
"build": "npm run test && npm run clean && npm run build:ts && npm run minify",
"clean": "rimraf ./dist",
"build:ts": "tsc -p .",
"minify": "uglifyjs ./dist/index.js -c -m -o ./dist/index.min.js",
"test": "jest ./tests/"
},
"author": "MerkDev <kamerdinc@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://merkdev@github.com/merkdev/temperatures.git"
},
"keywords": [
"convert",
"temperature",
"celsius",
"fahrenheit",
"kelvin"
],
"bugs": {
"url": "https://github.com/merkdev/temperatures/issues"
},
"homepage": "https://github.com/merkdev/temperatures#readme.md",
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5",
"uglify-js": "^3.14.5"
}
}