-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"name": "cn2tw4programmer",
"version": "1.0.10",
"description": "An chrome extension help translating computer science terms from zh-Hans to zh-Hant.",
"author": "PJCHENder <[email protected]> (https://pjchender.blogspot.com)",
"license": "ISC",
"main": "index.js",
"scripts": {
"start": "webpack --watch",
"build": "rm -rf dist && webpack --mode=production && zip -9 -r extension.zip dist/",
"build:newTongWenTang": "node ./src/utils/buildNewTongWenTang",
"test": "node ./src/utils/sortObjectByKey && jest",
"coveralls": "npm test -- --coverage && cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/pjchender/cn2tw4programmer.git"
},
"keywords": [
"chrome",
"extension"
],
"bugs": {
"url": "https://github.com/pjchender/cn2tw4programmer/issues"
},
"homepage": "https://github.com/pjchender/cn2tw4programmer#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.17.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"semantic-release": "^17.3.1",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1"
}
}