forked from manofearth/microm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.73 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
{
"name": "microm",
"version": "0.2.5",
"description": "Beautiful library to convert browser microphone to mp3 in Javascript",
"main": "./dist/microm.js",
"scripts": {
"test": "mocha-phantomjs -s localToRemoteUrlAccessEnabled=true -s webSecurityEnabled=false --reporter spec test/runner.html",
"start": "npm run serve | npm run dev",
"serve": "./node_modules/.bin/http-server -p 8080",
"dev": "webpack-dev-server --progress --colors --port 8090",
"watch": "webpack --progress --colors --watch",
"docs": "./node_modules/.bin/documentation microm.js --name -f md -o md/docs.md --shallow && cat md/intro.md > README.md && cat md/docs.md >> README.md",
"build": "webpack && webpack -p --output-file microm.min.js",
"amend": "git add . && git commit --amend --reuse-message=HEAD",
"push": "git push --tags && git push",
"release": "bower version patch -f && npm version patch --force --no-git-tag-version && npm run build && npm run amend && npm run push && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/zzarcon/microm.git"
},
"keywords": [
"microphone",
"micro",
"mp3",
"convert",
"converter",
"audio",
"microm"
],
"author": "zzarcon",
"license": "ISC",
"bugs": {
"url": "https://github.com/zzarcon/microm/issues"
},
"homepage": "https://github.com/zzarcon/microm",
"dependencies": {
"rsvp": "^3.1.0",
"extend": "3.0.0"
},
"devDependencies": {
"acorn":"^6.1.1",
"babel-core": "^5.4.3",
"babel-loader": "^5.1.2",
"chai": "^3.4.1",
"documentation": "^3.0.4",
"http-server": "~0.7.1",
"mocha": "^2.3.4",
"mocha-phantomjs": "^4.0.1",
"webpack": "~1.4.4",
"webpack-dev-server": "~1.6.5"
}
}