-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.65 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
61
62
{
"name": "parka",
"version": "0.6.2-0",
"description": "",
"main": "dist/parka.js",
"engines": {
"node": ">=6.9.5",
"npm": "~3.10.10"
},
"scripts": {
"start": "export PARKA_CONFIG_FILE=./test/example/config.yml && nodemon -e ts -x ts-node ./test/example/my-example-app.ts",
"tsc": "tsc",
"test": "export PARKA_CONFIG_FILE=./test/example/config.yml && mocha --require ts-node/register test/**/*-spec.ts",
"build": "rm -rf ./dist && tsc",
"prepublish": "npm run build"
},
"author": "Derek Pavao <[email protected]>",
"homepage": "https://github.com/dotDeeka/parka",
"repository": {
"type": "git",
"url": "https://github.com/dotDeeka/parka.git"
},
"bugs": {
"url": "https://github.com/dotDeeka/parka/issues"
},
"license": "MIT",
"bin": {
"parka": "./.bin/parka"
},
"typings": "./dist/parka.d.ts",
"dependencies": {
"@types/body-parser": "0.0.33",
"@types/chai": "^3.4.34",
"@types/express": "^4.0.34",
"@types/knex": "0.0.39",
"@types/lodash": "^4.14.48",
"@types/mocha": "^2.2.37",
"@types/node": "^6.0.59",
"@types/winston": "^2.3.1",
"bluebird": "^3.3.4",
"body-parser": "^1.15.0",
"commander": "^2.9.0",
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"injection-js": "^1.0.3",
"knex": "^0.10.0",
"lodash": "^4.6.1",
"morgan": "^1.7.0",
"objection": "^0.7.0-rc.3",
"reflect-metadata": "^0.1.3",
"shelljs": "^0.6.0",
"typescript": "^2.1.6",
"winston": "^2.3.1",
"yamljs": "^0.2.7"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"sqlite3": "^3.1.2",
"supertest": "^1.2.0"
}
}