-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
56 lines (56 loc) · 1.26 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
54
55
56
{
"name": "@cassette/components",
"version": "2.0.0-beta.4",
"description": "A simple, clean, and responsive visual wrapper for the HTML audio tag, built with React.",
"main": "dist/es5/cassette-components.js",
"scripts": {
"build:clean": "rimraf dist",
"build:webpack": "BUILD_MODE=all webpack --progress",
"build": "npm run build:clean && npm run build:webpack",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/benwiley4000/cassette.git"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=5.0.0"
},
"keywords": [
"audio",
"video",
"media",
"ui",
"react",
"reactjs",
"responsive",
"music",
"player",
"html5",
"component",
"components"
],
"author": {
"name": "Ben Wiley",
"email": "[email protected]",
"url": "http://benwiley.org/"
},
"license": "MIT",
"peerDependencies": {
"react": "^16.3.0"
},
"devDependencies": {
"rimraf": "^2.5.4",
"webpack": "^4.17.1"
},
"dependencies": {
"@cassette/core": "^2.0.0-beta.4",
"prop-types": "^15.5.10",
"resize-observer-polyfill": "^1.4.2"
},
"publishConfig": {
"access": "public"
}
}