-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 KB
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
{
"name": "typestore",
"version": "0.0.0",
"description": "Database written in TypeScript",
"main": "build/index.js",
"scripts": {
"build": "rm -rf ./build && ./node_modules/.bin/tsc",
"prestart": "npm run build",
"start": "node ./build/server.js",
"pretest": "npm run build && docker build -t typestore -f Dockerfile .",
"remap-istanbul": "./node_modules/.bin/remap-istanbul -i coverage/coverage.json -o coverage/coverage-final.json -t json",
"clean": "rm -fr ./coverage 2> /dev/null",
"postremap-istanbul": "rm -r ./coverage/lcov-report && rm ./coverage/lcov.info && rm ./coverage/coverage.json",
"test": "docker run --rm typestore",
"docker-test": "npm run clean && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- ./build/tests/server.test.js && npm run remap-istanbul"
},
"keywords": [
"typescript",
"database"
],
"author": "Daniele Manni",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/bson": "^1.0.8",
"@types/chai": "^4.1.3",
"@types/chai-http": "^3.0.4",
"@types/express": "^4.11.1",
"@types/mocha": "^5.2.0",
"@types/node": "^8.10.10",
"@types/winston": "^2.3.9",
"chai": "^4.0.0",
"chai-http": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"remap-istanbul": "^0.11.1",
"typescript": "^2.8.3"
},
"dependencies": {
"body-parser": "^1.15.2",
"bson": "^2.0.6",
"express": "^4.14.0"
}
}