-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
53 lines (53 loc) · 1.07 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
{
"name": "hermes",
"version": "1.0.0",
"description": "client-side messaging channel for sending data from one browser tab to another",
"main": "hermes.js",
"scripts": {
"build": "gulp",
"lint": "eslint *.js"
},
"author": "Arnelle Balane <arnellebalane@gmail.com> (https://arnellebalane.com)",
"license": "MIT",
"dependencies": {
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.1.2"
},
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"eslint": "5.8.0",
"eslint-config-arnellebalane": "1.4.0",
"husky": "3.0.1",
"lint-staged": "9.2.0"
},
"eslintConfig": {
"extends": [
"arnellebalane"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2015
},
"env": {
"browser": true,
"worker": true,
"amd": true
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
}
}