-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
97 lines (97 loc) · 3 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "win95-media-player",
"version": "0.1.0",
"description": "Back from 1995, and running on your website",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && mkdirp lib && node encodeIcons.js && babel src --out-dir lib",
"watch": "mkdirp lib && node encodeIcons.js && babel src --watch --out-dir lib",
"example:watch": "parcel example/src/index.html",
"example:build": "parcel build example/src/index.html --out-dir example/dist && parcel build example/quickstart/quickstart.html --out-dir example/dist",
"example:build:deploy": "parcel build example/src/index.html --out-dir example/dist --public-url /win95-media-player/ && parcel build example/quickstart/quickstart.html --out-dir example/dist --public-url /win95-media-player/",
"deploy": "npm run build && npm run example:build:deploy && gh-pages -d example/dist",
"prepare": "npm run build",
"prepublishOnly": "npm run lint:all",
"prettier": "pretty-quick --staged --no-restage \"**/*.js\" \"**/*.scss\"",
"prettier:all": "prettier --write \"**/*.js\" \"**/*.scss\"",
"lint": "lint-staged",
"lint:all": "eslint \"**/*.js\" && node prettier-check.js \"**/*.scss\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/benwiley4000/win95-media-player.git"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=5.0.0"
},
"keywords": [
"react",
"react-component",
"windows95",
"media-player",
"audio",
"video",
"ui",
"media",
"player",
"html5",
"windows",
"component",
"components",
"reactjs"
],
"author": {
"name": "Ben Wiley",
"email": "[email protected]",
"url": "https://benwiley.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/benwiley4000/win95-media-player/issues"
},
"homepage": "https://github.com/benwiley4000/win95-media-player#readme",
"peerDependencies": {
"react": "^16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"base64-img": "^1.0.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^2.0.1",
"lint-staged": "^8.1.5",
"mkdirp": "^0.5.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-static-files-copy": "^2.0.0",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"rimraf": "^2.6.3"
},
"dependencies": {
"@cassette/components": "^2.0.0-beta.1",
"@cassette/core": "^2.0.0-beta.1",
"prop-types": "^15.7.2",
"react95": "1.0.3",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^4.1.3"
},
"staticFiles": {
"staticPath": "example/public",
"watcherGlob": "**"
}
}