masticate 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +6 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "masticate",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.4",
|
4
4
|
"description": "Chews up HTML, spits out recipes. A library to extract recipe microformats from HTML documents. Inspired by the Ruby GEM hangry.",
|
5
5
|
"keywords": [
|
6
6
|
"module",
|
@@ -9,6 +9,7 @@
|
|
9
9
|
"main": "lib/index.js",
|
10
10
|
"scripts": {
|
11
11
|
"build": "babel ./src -d ./lib",
|
12
|
+
"lint": "eslint --fix ./src",
|
12
13
|
"test": "mocha --require @babel/register src/**.spec.js src/**/**.spec.js",
|
13
14
|
"prepare": "npm run build"
|
14
15
|
},
|
@@ -37,9 +38,12 @@
|
|
37
38
|
"devDependencies": {
|
38
39
|
"@babel/cli": "^7.14.5",
|
39
40
|
"@babel/core": "^7.14.6",
|
41
|
+
"@babel/eslint-parser": "^7.14.5",
|
40
42
|
"@babel/preset-env": "^7.14.7",
|
41
43
|
"@babel/register": "^7.14.5",
|
42
44
|
"chai": "^4.3.4",
|
43
|
-
"
|
45
|
+
"eslint": "^8.6.0",
|
46
|
+
"eslint-plugin-prefer-arrow": "^1.2.3",
|
47
|
+
"mocha": "^9.2.2"
|
44
48
|
}
|
45
49
|
}
|