forked from pviswanathan/ChromeAutoTextExpander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.51 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
{
"name": "ChromeAutoTextExpander",
"description": "Create custom keyboard shortcuts to expand and replace text as you type!",
"author": "Carlin Yuen",
"private": true,
"license": "BSD",
"version": "2.0.0",
"engines": {
"node": ">=6.0.0"
},
"eslintConfig": {
"env": {
"node": true,
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"globals": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"chrome": true
},
"rules": {
"eol-last": 0,
"quotes": [
2,
"single"
]
}
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"del": "^4.1.1",
"gulp": "^4.0.2",
"gulp-cache": "^1.1.2",
"gulp-chrome-manifest": "0.0.13",
"gulp-clean-css": "^4.2.0",
"gulp-eslint": "^5.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^6.0.0",
"gulp-livereload": "^4.0.1",
"gulp-load-plugins": "^1.6.0",
"gulp-remove-logging": "^1.2.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-useref": "^3.1.6",
"gulp-zip": "^5.0.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jquery": "^3.4.1",
"run-sequence": "^2.2.1",
"sinon-chrome": "^3.0.1",
"wiredep": "^4.0.0"
},
"dependencies": {},
"scripts": {
"test": "jest"
}
}