-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "currency-converter",
"version": "0.1.0",
"description": "A simple currency converter.",
"main": "index.js",
"scripts": {
"dev": "gulp",
"build": "gulp build",
"deploy": "./bin/deploy.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valerymelou/currency-converter.git"
},
"keywords": [
"currency",
"converter"
],
"author": "Valery Melou <valery@valerymelou.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/valerymelou/currency-converter/issues"
},
"homepage": "https://github.com/valerymelou/currency-converter#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"autoprefixer": "^8.6.3",
"babelify": "^9.0.0",
"browser-sync": "^2.24.5",
"browserify": "^16.2.2",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-cssnano": "^2.1.3",
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^7.0.1",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"run-sequence": "^2.2.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"idb": "^2.1.3"
},
"browserslist": [
"last 2 versions",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}