-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "soundplayer-desktop",
"longname": "SoundPlayer",
"namespace": "com.voronianski.soundplayer",
"version": "0.0.0",
"description": "Desktop SoundCloud player",
"main": "core/main.js",
"scripts": {
"build:tint": "rm -rf ./build/ && tntbuild ./package.json --clean --no-windows-build",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js --progress --colors -p",
"watch": "webpack --config webpack.config.dev.js --progress --colors --watch",
"start": "tint ./core/main.js",
"build": "npm run build:webpack && npm run build:tint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"sources": {
"directory": ".",
"exclude": "node_modules|gui|bin|test|webpack.config.dev.js|webpack.config.prod.js"
},
"icon": {
"windows": [
"./core/assets/tintruntime.png"
],
"osx": [
"./core/assets/tintruntime.png"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/soundblogs/soundplayer-desktop.git"
},
"keywords": [
"tint2",
"desktop",
"os x",
"soundcloud",
"player"
],
"author": "Dmitri Voronianski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/soundblogs/soundplayer-desktop/issues"
},
"homepage": "https://github.com/soundblogs/soundplayer-desktop#readme",
"dependencies": {
"react": "^0.13.3"
},
"devDependencies": {
"babel": "^5.8.3",
"babel-core": "^5.8.23",
"babel-loader": "^5.3.2",
"css-loader": "^0.16.0",
"cssnext": "^1.8.4",
"cssnext-loader": "^1.0.1",
"envify": "^3.4.0",
"extract-text-webpack-plugin": "^0.8.2",
"style-loader": "^0.12.3",
"transform-loader": "^0.2.2",
"uglify-js": "^2.4.24",
"webpack": "^1.12.0"
}
}