-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 KB
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
{
"name": "ipodjs",
"version": "1.0.3",
"description": "A javascript iPod player",
"keywords": [
"media",
"player",
"audio",
"web",
"ipod"
],
"homepage": "https://github.com/duhnnie/iPodJS#readme",
"bugs": {
"url": "https://github.com/duhnnie/iPodJS/issues"
},
"main": "dist/ipod.js",
"scripts": {
"start": "webpack-dev-server --env.NODE_ENV=development",
"build": "webpack --env.NODE_ENV=production",
"test": "semistandard --fix",
"prepack": "npm run build"
},
"author": {
"name": "Daniel Canedo",
"author": "Daniel Canedo",
"email": "me@duhnnie.net",
"url": "http://duhnnie.net"
},
"repository": {
"type": "git",
"url": "git://github.com/duhnnie/iPodJS.git"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.1.6",
"css-loader": "^3.6.0",
"file-loader": "^1.1.11",
"mini-css-extract-plugin": "^0.9.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"semistandard": "^12.0.1",
"style-loader": "^1.2.1",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.2"
},
"files": [
"dist/ipod.js",
"dist/ipod.js.map",
"dist/ipodjs.css",
"dist/ipodjs.css.map",
"dist/img/*"
]
}