-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
{
"name": "unified-translators",
"version": "0.1.0",
"description": "Collection of translators with unified interface.",
"keywords": [
"translate",
"translator"
],
"contributors": [
{
"name": "nickyc975",
"email": "[email protected]",
"url": "https://github.com/nickyc975"
},
{
"name": "Mark-Fenng",
"email": "[email protected]",
"url": "https://github.com/Mark-Fenng"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EdgeTranslate/unified-translators.git"
},
"main": "./dist/index.js",
"scripts": {
"format": "eslint 'src/**/*.js' --fix",
"build": "gulp build",
"test": "jest"
},
"devDependencies": {
"axios": "^0.19.2",
"axios-mock-adapter": "^1.18.2",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"del": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.2",
"gulp-eslint": "^5.0.0",
"gulp-stylus": "^2.7.0",
"gulp-terser": "^1.4.0",
"gulp-zip": "^4.2.0",
"jest": "^26.4.2",
"jest-raw-loader": "^1.0.1",
"lodash": "^4.17.20",
"merge-stream": "^2.0.0",
"minimist": "^1.2.5",
"prettier": "^1.19.1",
"raw-loader": "^0.5.1",
"webpack": "^4.44.1",
"webpack-merge": "^4.2.2",
"webpack-stream": "^5.2.1",
"xmldom": "^0.3.0"
},
"jest": {
"verbose": true,
"testTimeout": 10000,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest",
"\\.(css|less)$": "jest-raw-loader"
},
"moduleDirectories": [
"node_modules",
"src"
]
}
}