generated from a-type/typescript-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
56
57
58
59
60
61
62
63
64
{
"name": "ingredient-merge",
"version": "1.2.2",
"description": "Merges multiple raw ingredient strings into groups of parsed ingredient data",
"files": [
"dist",
"dist-esm"
],
"main": "./dist/index.js",
"module": "./dist-esm/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --bail",
"build:clean": "rimraf dist && rimraf dist-esm",
"build:cjs": "tsc",
"build:esm": "tsc -m es6 --outDir dist-esm",
"build": "npm run build:clean && npm run build:cjs && npm run build:esm",
"watch:cjs": "tsc --watch",
"watch:esm": "tsc -m es6 --outDir dist-esm --watch",
"prepublishOnly": "npm run build:cjs && npm run build:esm",
"release": "npm publish --access public",
"typedoc": "typedoc --options typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-type/ingredient-merge.git"
},
"keywords": [],
"author": {
"name": "Grant Forrest",
"email": "[email protected]",
"url": "https://github.com/a-type"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/a-type/ingredient-merge/issues"
},
"homepage": "https://github.com/a-type/ingredient-merge#readme",
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/convert-units": "^2.3.2",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.23",
"@types/pluralize": "0.0.29",
"@types/shortid": "0.0.29",
"babel-loader": "^8.1.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typedoc": "0.17.0-3",
"typescript": "^3.9.7"
},
"dependencies": {
"convert-units": "3.0.0-beta.3",
"ingredients-parser": "^1.4.0",
"parse-fraction": "^1.2.1",
"pluralize": "^8.0.0",
"shortid": "^2.2.15"
}
}