This repository has been archived by the owner on Aug 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "odca-oakland",
"version": "0.0.0",
"description": "Campaign finance data for Oakland",
"scripts": {
"build": "npm-run-all build:thirdparty \"build:js -- {1}\" build:jekyll --",
"build:jekyll": "jekyll build",
"build:js": "./_bin/build_js.sh",
"build:thirdparty": "mkdir -p _site/assets && for dir in fonts images javascripts; do cp -R node_modules/bootstrap-sass/assets/${dir} _site/assets/; done && cp -R node_modules/jquery/dist/jquery.min.js _site/assets/javascripts/",
"lint": "eslint \"src/**/*.js\"",
"serve": "npm-run-all serve:build serve:run",
"serve:build": "npm run build",
"serve:run": "jekyll serve",
"start": "npm run serve",
"test": "npm run lint",
"watch": "watch -d --wait 1 'npm run build:js' src & npm run serve:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adborden/odca-oakland.git"
},
"keywords": [
"campaign finance",
"oakland"
],
"author": "Aaron D Borden <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/adborden/odca-oakland/issues"
},
"homepage": "https://github.com/adborden/odca-oakland#readme",
"dependencies": {
"angular": "^1.5.8",
"angular-resource": "^1.5.8",
"angular-route": "^1.5.8",
"angular-scroll-animate": "^0.9.9",
"bootstrap-sass": "^3.3.6",
"es5-shim": "^4.5.9",
"es6-shim": "^0.35.1",
"jquery": "^2.2.3",
"lodash": "^4.15.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"browserify-ngannotate": "^2.0.0",
"eslint": "^3.4.0",
"exorcist": "^0.4.0",
"npm-run-all": "^3.1.0",
"stringify": "^5.1.0",
"uglify-js": "^2.7.3",
"watch": "^0.19.2"
}
}