-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 918 Bytes
/
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
{
"name": "ingredientes-pln",
"version": "1.1.0",
"description": "Extrai tokens de uma lista de ingredientes em linguagem natural tirado de receitas da culinária brasileira.",
"main": "index.js",
"author": "mgustavocoder@gmail.com",
"license": "ISC",
"keywords": [
"ingredientes",
"receitas",
"culinária",
"cozinha"
],
"scripts": {
"test": "nyc ./node_modules/.bin/mocha tests/**/*.test.js",
"test:watch": "./node_modules/.bin/mocha tests/**/*.test.js --watch",
"lint": "npx eslint ."
},
"dependencies": {
"lodash.isempty": "^4.4.0",
"natural": "^5.0.1"
},
"devDependencies": {
"chai": "^4.3.3",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"husky": "^6.0.0"
}
}