-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.29 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
51
52
53
{
"name": "@poulpi/domtojson",
"version": "0.2.1001",
"description": "Simple domtojson with gzip for more optimization",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"directories": {
"test": "test"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -w -c ",
"prepublishOnly": "npm run build -c"
},
"engines": {
"node": ">=10.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Poulpinounette/domtojson.git"
},
"keywords": [
"domparser",
"json",
"dom2json",
"json2dom",
"gzipjson",
"gzip",
"domgzip"
],
"author": "poulpi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Poulpinounette/domtojson/issues"
},
"homepage": "https://github.com/Poulpinounette/domtojson#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@types/node": "^14.0.27",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify": "^6.0.4",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
}
}