-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1019 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1019 Bytes
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
{
"name": "@homebots/parse-html-runtime",
"version": "0.0.0-dev",
"description": "Runtime extension for @homebots/parse-html",
"main": "./index.js",
"typings": "./dist/index.d.ts",
"type": "module",
"scripts": {
"clean": "rm -rf dist/",
"test": "echo true",
"build": "npm run clean && tsc --project ./tsconfig.json && npm run rollup",
"rollup": "./node_modules/.bin/rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/homebots/parse-html-runtime.git"
},
"author": "Darlan Alves <me@darlanalv.es>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@homebots/parse-html": "^1.0.0",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^10.0.1",
"@types/node": "^20.0.0",
"rollup": "^2.79.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}