-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
74 lines (74 loc) · 2.67 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@lokidb/lokidb-src",
"version": "2.1.0",
"description": "Fast document oriented javascript in-memory database",
"author": "Various authors",
"license": "(MIT OR Apache-2.0)",
"scripts": {
"lint": "tslint -p config/tsconfig.tslint.json -c config/tslint.json",
"lint:fix": "npm run lint -- --fix",
"test": "npm run test:web && npm run test:node && npm run coverage",
"test:web": "karma start config/karma.config.js --single-run",
"test:web:watch": "karma start config/karma.config.js",
"test:node": "nyc --nycrc-path config/nycrc.node.json jasmine --config=\"config/jasmine.json\"",
"test:integration": "npm run test:integration:browser && npm run test:integration:amd && npm run test:integration:node",
"test:integration:browser": "karma start integration/config/karma.browser.config.js --single-run",
"test:integration:amd": "karma start integration/config/karma.amd.config.js --single-run",
"test:integration:node": "jasmine --config=\"integration/config/jasmine.json\"",
"coverage": "istanbul report json lcov && nyc report --nycrc-path config/nycrc.json",
"docs": "typedoc --tsconfig tsconfig.json packages/",
"build": "ts-node scripts/build.ts",
"deploy": "ts-node scripts/deploy.ts",
"benchmark": "node --expose-gc benchmark/benchmark",
"benchmark:indexes": "node --expose-gc benchmark/benchmark_indexes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LokiJS-Forge/LokiDB.git"
},
"keywords": [
"javascript",
"document-oriented",
"mmdb",
"database",
"json",
"lokidb",
"in-memory"
],
"bugs": {
"url": "https://github.com/LokiJS-Forge/LokiDB/issues"
},
"homepage": "https://LokiJS-Forge.github.io/LokiDB",
"devDependencies": {
"@types/elasticsearch": "^5.0.24",
"@types/jasmine": "^2.8.8",
"@types/node": "^8.10.19",
"cash": "^0.8.0",
"codecov": "^3.0.2",
"conventional-changelog": "^2.0.1",
"elasticsearch": "^13.3.1",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.1.0",
"jasmine-expect": "^3.8.3",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-jasmine": "^1.1.2",
"karma-jasmine-matchers": "^3.7.0",
"karma-webpack": "^3.0.0",
"nyc": "^12.0.2",
"source-map-loader": "^0.2.3",
"ts-loader": "^4.4.1",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-loader": "^3.6.0",
"typedoc": "^0.11.1",
"typescript": "2.8.3",
"uglify-es": "^3.3.10",
"vrsource-tslint-rules": "^5.8.2",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3"
}
}