-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
71 lines (71 loc) · 2.34 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
{
"name": "bob-plugin-deepl-translate",
"version": "0.8.1",
"author": "Roy Li <me@dada.li>",
"homepage": "https://github.com/geekdada/bob-plugin-deepl-translate",
"repository": "https://github.com/geekdada/bob-plugin-deepl-translate.git",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf build && rimraf release",
"build": "run-s clean && cross-env NODE_ENV=production rollup -c rollup.config.js",
"bundle": "cross-env NODE_ENV=production node scripts/bundle.js",
"bundle:watch": "cross-env NODE_ENV=development nodemon --watch build scripts/bundle.js",
"make-release": "run-s build bundle update-appcast",
"dev": "run-s clean && cross-env NODE_ENV=development rollup -c rollup.config.js --watch",
"type-check": "tsc --noEmit",
"update-appcast": "node scripts/update-appcast.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"pub": "np --no-publish --no-release-draft",
"version": "npm run changelog && git add ."
},
"dependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^6.1.0",
"@types/adm-zip": "^0.4.33",
"@types/jsonfile": "^6.0.0",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.8.0",
"adm-zip": "^0.4.16",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"eslint-plugin-prettier": "^3.1.4",
"form-data": "^3.0.0",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"nodemon": "^2.0.6",
"np": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rollup": "^2.28.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"ts-node": "^9.0.0",
"tslib": "^2.0.3",
"type-fest": "^0.19.0",
"typescript": "^4.0.5"
},
"nodemonConfig": {
"ignore": [
"build/info.json"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "eslint",
"*.ts": "eslint --ext .ts"
}
}