-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "lullaby",
"version": "0.0.1",
"description": "lullaby is a REST enabler API that you can use to rapidly expose a data source as a RESTfull service.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "tsc && npm run build && node ./dist/lullaby.js",
"start2": "tsc && node ./src/index.js",
"build": "tsc && webpack --config webpack.config.js",
"build2": "tsc",
"test": "mocha test/**/*.js",
"test:watch": "npm run test -- -w",
"pretest": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabricioferreira/lullaby.git"
},
"keywords": [
"rest"
],
"author": "Fabricio Ferreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabricioferreira/lullaby/issues"
},
"homepage": "https://github.com/fabricioferreira/lullaby#readme",
"devDependencies": {
"@types/express": "^4.0.35",
"@types/lodash": "^4.14.56",
"@types/mssql": "~4.0.1",
"@types/node": "^7.0.8",
"awesome-typescript-loader": "^3.1.3",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"mocha": "^3.2.0",
"typescript": "^2.2.1",
"webpack": "^2.5.1"
},
"dependencies": {
"express": "^4.15.3",
"lodash": "^4.17.4",
"mssql": "~4.0.4"
}
}