-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·84 lines (84 loc) · 2.17 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "querycomments",
"nameFull": "Querycomments",
"version": "1.0.0",
"description": "A querycomments library",
"license": "apache-2",
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victornpb/querycomments.git"
},
"bugs": {
"url": "https://github.com/victornpb/querycomments/issues"
},
"homepage": "https://github.com/victornpb/querycomments",
"author": "victornpb",
"main": "dist/querycomments.cjs.js",
"module": "dist/querycomments.esm.js",
"unpkg": "dist/querycomments.js",
"globalVar": "querycomments",
"scripts": {
"start": "rollup -c -w",
"dev": "rollup -c -w",
"build": "rollup -c",
"lint": "eslint src/**/*.js",
"lint:fix": "prettier-eslint src/**/*.js --write",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build && git add * && git commit -m \"Updating build\"",
"release": "np patch --any-branch"
},
"files": [
"dist"
],
"keywords": [
"html comments",
"querySelector",
"comments",
"node walker",
"dom",
"tree"
],
"sideEffects": false,
"dependencies": {
"core-js": "^3.19.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-transform-object-assign": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.4",
"babel-plugin-array-includes": "^2.0.3",
"eslint": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.1",
"np": "^7.6.0",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.60.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"tiny-dedent": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run lint:fix",
"git add"
]
}
}