forked from nsafai/recipe-parser
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "recipe-ingredient-parser-v3",
"version": "1.3.0",
"description": "Natural language parser for recipes and ingredient lists, incl. combining ingredients",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc",
"build:test": "rm -rf testDist && tsc -p test/tsconfig.json",
"lint": "tslint \"{./**/*.ts,./**/*.tsx}\" --exclude \"{./node_modules/**,./**/*.d.ts}\"",
"prepublish": "npm run build",
"test": "npm run build:test && NODE_ENV=test mocha testDist/test/**/*.js",
"test:watch": "nodemon --ignore lib --ignore testDist -e ts,tsx -x 'npm run test --silent || true'",
"test:ci": "npm run lint && npm test",
"watch": "nodemon --watch src -e ts,tsx -x 'npm run build'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suprmat95/recipe-parser/"
},
"author": "Matteo D'Ospina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/suprmat95/recipe-parser/issues"
},
"homepage": "https://github.com/suprmat95/recipe-parser#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.4",
"chai": "^4.1.0",
"mocha": "^5.2.0",
"tslint": "^5.10.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/node": "^10.5.1"
},
"keywords": [
"recipe",
"parser",
"ingredient",
"combine",
"units"
]
}