-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "icelandic-api",
"version": "0.0.1",
"description": "An api for exploring icelandic grammar",
"main": "index.js",
"scripts": {
"start": "forever --minUptime 1000 --spinSleepTime 1000 index.js",
"test": "mocha --require babel-core/register --require babel-polyfill --recursive ./test/parser -s 10",
"lint": "jshint --exclude ./node_modules . || true && eslint .",
"style": "eslint .",
"deploy": "./deploy.sh",
"build-database": "rm -rf db && node ./database/build-database"
},
"repository": {
"type": "git",
"url": "https://github.com/davidblurton/icelandic-api"
},
"author": "David Blurton",
"license": "ISC",
"dependencies": {
"axios": "^0.5.4",
"babel-plugin-transform-regenerator": "^6.4.4",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-polyfill": "^6.3.14",
"babel-preset-node5": "^10.5.0",
"babel-preset-stage-0": "^6.3.13",
"compression": "^1.6.1",
"concat-stream": "^1.5.0",
"cors": "^2.7.1",
"express": "^4.13.1",
"express-bunyan-logger": "^1.1.1",
"forever": "^0.15.1",
"level-sublevel": "^6.5.4",
"leveldown": "^1.4.4",
"levelup": "^1.3.1",
"line-by-line": "^0.1.4",
"lodash": "^4.5.0",
"node-statsd": "^0.1.1",
"nodehun": "^2.0.8",
"prfun": "^2.1.1",
"response-time": "^2.3.1",
"run-series": "^1.1.4",
"traverse": "^0.6.6"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.3",
"babel-register": "^6.4.3",
"eslint": "^1.5.0",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-babel": "^2.1.1",
"jscs": "^1.13.1",
"mocha": "^2.2.5"
}
}