-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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": "modify-element",
"version": "1.0.0",
"description": "Allows you to easily modify elements on websites using MutationObserver",
"main": "src/index.ts",
"repository": "git@github.com:martindzejky/modify-element.git",
"author": "Martin Jakubik <martin@jakubik.info>",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=development rollup --config",
"build:min": "cross-env NODE_ENV=production rollup --config --file ./dist/modify-element.min.js",
"build:watch": "cross-env NODE_ENV=development rollup --config --watch"
},
"engines": {
"node": ">= 10"
},
"browserslist": [
"last 1 version",
"not dead"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-preset-minify": "^0.5.1",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^1.19.1",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify-es": "^0.0.1",
"typescript": "^3.9.10"
}
}