-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.51 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
{
"name": "liberator-web-frontend",
"version": "0.0.0",
"description": "Angularjs powered frontend for Liberator project <https://github.com/libreoss/liberator>",
"main": "index.js",
"scripts": {
"start": "npm install && parallelshell 'npm run watch' 'npm run serve' 'npm run livereload'",
"build:js": "cp node_modules/jquery/dist/* app/dist/ && browserify app/scripts/app.js > app/dist/liberator.js",
"build:bootstrap": "cp -rv node_modules/bootstrap/dist/* app/dist/",
"build": "mkdir app/dist -p && npm run build:js && npm run build:bootstrap",
"clean": "rm -rfv dist/",
"lint": "jshint **.js",
"prebuild": "npm run lint",
"watch": "watch 'npm run build' ./app/ --filter=watch_filter",
"serve": "http-server -p 9000 -a 0.0.0.0 ./app/",
"livereload": "live-reload ./app/dist/ --port 9001"
},
"repository": {
"type": "git",
"url": "git://github.com/Crawleyprint/liberator-web-frontend.git"
},
"author": "Mladen Stepanic <[email protected]>",
"license": "GPL3",
"bugs": {
"url": "https://github.com/Crawleyprint/liberator-web-frontend/issues"
},
"devDependencies": {
"angular": "~1.3.11",
"angular-messages": "~1.3.15",
"angular-ui-router": "~0.2.13",
"angular-sanitize": "~1.3.11",
"angular-contenteditable": "~0.0.2",
"bootstrap": "^3.3.6",
"browserify": "~8.1.3",
"http-server": "^0.8.5",
"jquery": "^2.2.0",
"jshint": "^2.9.1",
"live-reload": "^1.1.0",
"parallelshell": "^2.0.0",
"watch": "^0.17.1"
}
}