-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (29 loc) · 1.2 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
{
"name": "estorrent",
"private": true,
"version": "0.0.1",
"description": "ElasticSearch based Magnet search engine",
"repository": "https://github.com/akashihi/estorrent",
"license": "GPLv3",
"devDependencies": {
"bower": "^1.3.1",
"http-server": "^0.6.1",
"grunt": "~0.4.5",
"grunt-contrib-imagemin": "~1.0.0",
"grunt-contrib-jshint": "~0.11.3",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-cssmin": "~0.14.0",
"grunt-uncss": "~0.4.4",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-htmlmin": "~0.6.0",
"grunt-processhtml": "~0.3.8",
"grunt-closure-compiler": "~0.0.21",
"grunt-ng-annotate": "~1.0.1"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + sed(/sourceMappingURL=angular-loader.min.js.map/,'sourceMappingURL=bower_components/angular-loader/angular-loader.min.js.map','app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}