forked from GSA/code-gov-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.58 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
{
"name": "code-gov-api",
"version": "0.0.1",
"author": "Michael Balint <[email protected]> (https://presidentialinnovationfellows.gov/)",
"description": "[Code.gov](https://code.gov) is a website promoting good practices in code development, collaboration, and reuse across the U.S. Government. Code.gov will provide tools and guidance to help agencies implement the [Federal Source Code Policy](https://sourcecode.cio.gov). It will include an inventory of the government's custom code to promote reuse between agencies. And it will provide tools to help government and the public collaborate on open source projects. This repository is home to the code powering code.gov. To learn more about the project, check out the main [Code.gov project README](https://github.com/presidential-innovation-fellows/code-gov-pm/blob/master/README.md)",
"repository": {
"type": "git",
"url": "https://github.com/presidential-innovation-fellows/code-gov-api.git"
},
"scripts": {
"start": "node app.js | ./node_modules/bunyan/bin/bunyan",
"index": "node ./scripts/index/index.js | ./node_modules/bunyan/bin/bunyan",
"index-repos": "node ./scripts/index/repo/index.js | ./node_modules/bunyan/bin/bunyan",
"index-terms": "node ./scripts/index/term/index.js | ./node_modules/bunyan/bin/bunyan",
"create-diffs": "node ./scripts/create_diffs/index.js --max_old_space_size=8192 | ./node_modules/bunyan/bin/bunyan",
"find-gh-gov-orgs": "node ./scripts/find_gh_gov_orgs/index.js | ./node_modules/bunyan/bin/bunyan",
"find-gh-gov-repos": "node ./scripts/find_gh_gov_repos/index.js | ./node_modules/bunyan/bin/bunyan"
},
"dependencies": {
"JSONStream": "1.3.0",
"ajv": "4.9.2",
"async": "2.0.1",
"body-parser": "1.15.2",
"bodybuilder": "1.22.0",
"bunyan": "1.8.1",
"bunyan-middleware": "0.3.1",
"cookie-parser": "1.4.3",
"cors": "2.7.1",
"diff": "^3.1.0",
"dtrace-provider": "0.7.0",
"elasticsearch": "12.1.0",
"event-stream": "3.3.2",
"express": "4.14.0",
"git-rev": "0.2.1",
"github": "6.1.0",
"jquery": "3.1.0",
"jsonfile": "2.4.0",
"jstransformer-markdown-it": "1.0.0",
"latinize": "0.3.0",
"lodash": "4.12.0",
"marked": "0.3.6",
"moment": "2.13.0",
"nan": "2.4.0",
"pug": "2.0.0-beta6",
"serve-favicon": "2.3.0"
},
"devDependencies": {
"babel-cli": "6.5.1",
"babel-core": "6.5.1",
"babel-plugin-lodash": "2.0.1",
"babel-preset-es2015": "6.5.0",
"chai": "3.2.0",
"eslint": "1.10.2",
"mocha": "2.4.5"
},
"engines": {
"node": "6.7.0",
"npm": "3.8.5"
}
}