-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 KB
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": "ingredient-phrase-tagger",
"version": "0.1.3",
"description": "NodeJS port of NYTimes CRF Ingredient Phrase Tagger",
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"format": "prettier --write \"src/**/*.js\"",
"format:check": "prettier --list-different \"src/**/*.js\"",
"lint": "eslint src",
"prepare": "npm run clean && npm run format:check && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/SimonBoorer/node-ingredient-phrase-tagger.git"
},
"files": [
"lib",
"src"
],
"author": "Simon Boorer <[email protected]> (https://github.com/SimonBoorer)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SimonBoorer/node-ingredient-phrase-tagger/issues"
},
"homepage": "https://github.com/SimonBoorer/node-ingredient-phrase-tagger",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.10.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.15.3"
},
"dependencies": {
"crfsuite": "^0.9.4",
"csv": "^5.0.0",
"inflection": "^1.12.0"
}
}