-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 859 Bytes
/
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
{
"name": "@jrabausch/simplyr",
"version": "1.0.0",
"description": "Simple typed audio player for the browser.",
"main": "index.js",
"scripts": {
"build": "npm run build:dist & npm run build:dist:min",
"build:dist": "browserify -p tsify src/index.ts > dist/simplyr.js",
"build:dist:min": "browserify -p tsify src/index.ts | terser --compress --mangle > dist/simplyr.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrabausch/simplyr.git"
},
"keywords": [
"typescript",
"audio",
"player"
],
"author": "Johannes Rabausch",
"license": "MIT",
"bugs": {
"url": "https://github.com/jrabausch/simplyr/issues"
},
"homepage": "https://github.com/jrabausch/simplyr#readme",
"devDependencies": {
"browserify": "^17.0.0",
"terser": "^5.14.2",
"tsify": "^5.0.4"
}
}