-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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": "alerterjs",
"version": "1.1.0",
"description": "Stackable alerts without dependencies",
"main": "alerter.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d dist && npm run minify",
"minify": "google-closure-compiler --js=dist/alerter.js --js_output_file=dist/alerter.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gosukiwi/alerter.git"
},
"keywords": [
"alerts",
"stack"
],
"author": "Federico Ramirez",
"license": "MIT",
"bugs": {
"url": "https://github.com/gosukiwi/alerter/issues"
},
"homepage": "https://github.com/gosukiwi/alerter#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"browserslist": "^4.1.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"google-closure-compiler": "^20180805.0.0"
},
"browserslist": [
"last 2 versions",
"> 1%",
"not dead",
"ie >= 8"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry"
}
]
]
}
}