-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "@julianpoy/recipe-clipper",
"version": "0.0.0-development",
"description": "Grab recipes from (almost) any website",
"main": "dist/recipe-clipper.cjs",
"module": "dist/recipe-clipper.mjs",
"browser": "dist/recipe-clipper.umd.js",
"iife": "dist/recipe-clipper.iife.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"lint": "eslint ./src/*.js ./src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"test": "jest ./src --watch --coverage",
"test:ci": "jest ./src --coverage",
"integration": "./integration-tests/run.sh",
"semantic-release": "semantic-release"
},
"repository": "github:julianpoy/RecipeClipper",
"author": "Julian Poyourow",
"license": "AGPL-3.0-only",
"publishConfig": {
"access": "public"
},
"dependencies": {
"core-js": "^3.33.1",
"regenerator-runtime": "^0.14.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"babel-jest": "^29.7.0",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"puppeteer-core": "^22.11.2",
"rollup": "^4.1.4",
"sanitize-html": "^2.11.0",
"semantic-release": "^22.0.5",
"whatwg-fetch": "^3.6.19"
}
}