-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "parse-ingredients",
"version": "0.2.8",
"description": "Multi-language recipe ingredients parser",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "npx eslint ./ --ignore-pattern node_modules --fix --quiet",
"prepublish": "yarn build",
"test": "jest --testPathPattern=src/*",
"test:watch": "jest --watchAll --testPathPattern=src/*",
"test:ci": "yarn lint && yarn test",
"watch": "nodemon --watch src -e ts,tsx -x 'yarn build'"
},
"repository": {
"type": "git",
"url": "git@github.com:JMagrin/parse-ingredients.git"
},
"author": "Jérémy Magrin <contact@magrin.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JMagrin/parse-ingredients.git/issues"
},
"homepage": "https://github.com/JMagrin/parse-ingredients.git#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.3",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"tslint": "^5.10.0",
"typescript": "^4.4.4"
},
"keywords": [
"recipe",
"parser",
"ingredient",
"combine",
"units"
]
}