-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "audiotrim",
"version": "1.0.0",
"description": "A simple electron app to trim and encode audio files",
"scripts": {
"rebuild": "cd app && npm run-script rebuild",
"postinstall": "cd app && npm install",
"prestart": "./node_modules/gulp/bin/gulp.js",
"reinstall": "rm -rf node_modules app/node_modules && npm install",
"start": "cd app && npm start",
"test": "cd app && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrutman/AudioTrim.git"
},
"keywords": [
"electron",
"audio",
"trim",
"encode"
],
"author": "Nathan Rutman",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrutman/AudioTrim/issues"
},
"homepage": "https://github.com/nrutman/AudioTrim#readme",
"dependencies": {
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-clean-css": "^2.0.13",
"gulp-concat": "^2.6.0",
"gulp-ng-annotate": "^2.0.0",
"gulp-sass": "^2.3.2",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7"
}
}