-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "remove-copy-watermark",
"version": "0.2.0",
"description": "Remove copyright watermark appended to the end of copied content",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc && npm run bundle",
"bundle": "webpack --config dist/webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffreytse/remove-copy-watermark.git"
},
"author": "Jeffrey Tse <[email protected]>",
"homepage": "https://github.com/jeffreytse/remove-copy-watermark#readme",
"bugs": {
"url": "https://github.com/jeffreytse/remove-copy-watermark/issues"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@types/node": "^14.18.36",
"@types/webpack": "^5.28.0",
"babel-loader": "^9.1.2",
"gts": "^3.1.1",
"rimraf": "^4.0.5",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}