-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.41 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.41 KB
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
{
"name": "freqazoid",
"version": "0.1.0",
"description": "A real-time pitch detection software",
"main": "index.js",
"scripts": {
"init": "npm run copy:vendor && cd dist && mkdir js",
"test": "echo \"Error: no test specified\" && exit 1",
"copy:vendor": "node node_modules/copyfiles/copyfiles -f node_modules/material-design-lite/material.css node_modules/material-design-lite/material.js node_modules/vue/dist/vue.js node_modules/dspjs/dsp.js dist/vendor/",
"build:ugly": "browserify src/main.js | babel --presets es2015 | uglifyjs --compress --mangle > dist/js/app.js",
"build": "browserify src/main.js | babel --presets es2015 > dist/js/app.js",
"watch": "watchify src/main.js -o dist/js/app.js",
"deploy": "push-dir --dir=dist --branch=gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vug/freqazoid.git"
},
"author": {
"name": "Ugur Guney",
"email": "ugurguney@gmail.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/vug/freqazoid/issues"
},
"homepage": "https://github.com/vug/freqazoid",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"browserify": "^13.1.0",
"copyfiles": "^1.0.0",
"push-dir": "^0.2.2",
"uglify-js": "^2.7.3",
"watchify": "^3.7.0"
},
"dependencies": {
"dspjs": "^1.0.0",
"material-design-lite": "^1.2.0",
"vue": "^2.1.8"
}
}