-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.14 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
{
"name": "users-api",
"version": "1.0.1",
"description": "This API allows all RESTL operations over the dataset hosted in https://gist.githubusercontent.com/jasonmadigan/009c15b5dc4b4eccd32b/raw/34759c44e77d2f3515e20ed561cdd7a5e8345585/users.json.",
"scripts": {
"start": "node dist/src/server.js",
"postinstall": "node_modules/typescript/bin/tsc -p . && cp -r src/assets dist/src/assets",
"test": "node_modules/.bin/jasmine",
"posttest": "rm -r database/test",
"clean": "rm -rf node_modules database realm-object-server dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josemigallas/users-api.git"
},
"author": "Jose Miguel Gallas Olmedo",
"license": "ISC",
"dependencies": {
"@types/express": "^4.0.36",
"@types/jasmine": "^2.5.53",
"@types/node": "^8.0.13",
"@types/realm": "^1.0.3",
"@types/request": "^2.0.0",
"@types/request-promise-native": "^1.0.6",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"jasmine": "^2.6.0",
"realm": "^1.10.0",
"request-promise-native": "^1.0.4",
"typescript": "^2.4.1"
},
"engines": {
"node": "4.4.7"
}
}