-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.11 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": "bmi-utils",
"version": "0.0.0-development",
"description": "An library with some functions relates to Body Mass Index (BMI), like calculate and get the ideial weight",
"author": "Emanuel Souza <[email protected]>",
"license": "MIT",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"homepage": "https://github.com/emanuelgsouza/bmi-utils#readme",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/",
"build": "rm -rf dist/ && rollup -c",
"prepare": "npm run-script build",
"semantic-release": "semantic-release"
},
"repository": "https://github.com/emanuelgsouza/bmi-utils.git",
"keywords": [
"bmi-utils",
"body-mass-index",
"utils",
"bmi"
],
"bugs": {
"url": "https://github.com/emanuelgsouza/bmi-utils/issues"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-jest": "^27.0.6",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"rollup": "^2.53.1",
"semantic-release": "^17.4.4"
},
"dependencies": {}
}