-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "measuring-cup",
"version": "2.0.1",
"description": "A quick and simple tool to convert cooking measurements like ounces, cups and tablespoons right in your code! 📏🥛",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"build": "tsc",
"lint:prettier": "prettier --check \"src/**/*.ts\"",
"lint:eslint": "eslint .",
"lint": "concurrently \"npm run lint:prettier\" \"npm run lint:eslint\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cgatno/measuring-cup.git"
},
"keywords": [
"convert",
"cooking",
"ounces",
"cups",
"tablespoons",
"measure",
"conversion"
],
"author": "Christian Gaetano <hello@christiangaetano.com> (https://christiangaetano.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cgatno/measuring-cup/issues"
},
"homepage": "https://github.com/cgatno/measuring-cup#readme",
"devDependencies": {
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}