-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.1 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
{
"name": "godictionary",
"version": "2.0.0",
"description": "简单快速的在线词典查询扩展",
"main": "main.js",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-preset-babili": "^0.1.3",
"babel-preset-env": "^1.5.0",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-uglify": "^3.0.0",
"pump": "^1.0.2"
},
"browserslist": [
"last 1 Firefox version",
"last 1 Chrome version"
],
"babel": {
"presets": [
["env", {
"targets": {
"browsers": [
"last 1 Firefox version"
]
},
"debug": false
}],
["babili"]
]
},
"scripts": {
"build": "gulp browserify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gloomy-ghost/GoDict.git"
},
"keywords": [
"WebExtension"
],
"author": "gloomy-ghost",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/gloomy-ghost/GoDict/issues"
},
"homepage": "https://github.com/gloomy-ghost/GoDict#readme"
}