-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.82 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
49
50
{
"name": "gsf-extension-extract-html-headings",
"version": "0.2.0",
"description": "Extract html headings (H1 - H6) content.",
"homepage": "https://github.com/a1sabau/gsf-extension-extract-html-headings",
"main": "dist/ExtractHtmlHeadings.js",
"files": [
"dist"
],
"scripts": {
"clean": "shx rm -rf dist",
"lint": "eslint src/**/*.ts",
"build": "npm run clean && npm run lint && npm run build:dist && npm run build:dist:tgz",
"build:dist": "rollup --config rollup.config.js",
"prebuild:dist:tgz": "shx cp -R dist test/resources/sites/registry.npmjs.org/gsf-extension-extract-html-headings/-/package",
"build:dist:tgz": "ts-node --ignore=\"node_modules/(?!get-set-fetch-extension-test-utils)\" --files ./scripts/tgz-npm-pkg.ts",
"test": "mocha test \"./test/integration/**/*.ts\" --exit",
"test:single": "mocha test \"./test/integration/**/*.ts\" --grep \"Extract Html Headings\""
},
"author": {
"name": "Andrei Sabau"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/connect": "^3.4.32",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.12",
"@types/puppeteer": "^1.12.4",
"@types/serve-static": "^1.13.2",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"get-set-fetch-extension": "^0.2.0",
"get-set-fetch-extension-test-utils": "^0.2.0",
"rollup": "^1.16.4",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"shx": "^0.3.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"dependencies": {
"get-set-fetch-extension-commons": "^0.2.0"
}
}