-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "theremin",
"version": "0.1.0",
"description": "Theremin",
"main": "index.js",
"scripts": {
"development": "gulp",
"lint": "eslint src/js/.",
"clean": "rm -rf dist node_modules",
"release": "gulp build",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luisddm/theremin.git"
},
"author": "luisddm",
"license": "MIT",
"bugs": {
"url": "https://github.com/luisddm/theremin/issues"
},
"homepage": "https://github.com/luisddm/theremin#readme",
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"browser-sync": "^2.18.8",
"del": "^2.2.2",
"eslint": "^3.18.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^3.0.3",
"gulp-html-replace": "^1.6.2",
"gulp-postcss": "^6.3.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.1.0",
"gulp-webpack": "^1.5.0",
"postcss-import": "^9.1.0",
"webpack": "^2.3.3"
},
"babel": {
"presets": [
"es2015"
]
}
}