UNPKG

1.99 kBJSONView Raw
1{
2 "name": "lokijs",
3 "version": "1.5.2",
4 "description": "Fast document oriented javascript in-memory database",
5 "homepage": "http://lokijs.org",
6 "main": "src/lokijs.js",
7 "directories": {
8 "example": "examples"
9 },
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/techfort/LokiJS.git"
13 },
14 "keywords": [
15 "javascript",
16 "document-oriented",
17 "mmdb",
18 "json",
19 "nosql",
20 "lokijs",
21 "in-memory"
22 ],
23 "scripts": {
24 "lint": "jshint src",
25 "test:browser": "karma start karma.conf.js --single-run",
26 "test:node": "istanbul cover --dir coverage/nodejs node_modules/jasmine/bin/jasmine.js",
27 "pretest": "npm run lint",
28 "test": "npm run test:browser && npm run test:node",
29 "build:lokijs": "uglifyjs src/lokijs.js > build/lokijs.min.js",
30 "build:indexedAdapter": "uglifyjs src/loki-indexed-adapter.js > build/loki-indexed-adapter.min.js",
31 "build": "npm run build:lokijs && npm run build:indexedAdapter",
32 "postbuild": "karma start karma.build.conf.js --single-run",
33 "prepublish": "npm run build",
34 "clean": "rimraf build/* coverage/* node_modules",
35 "pour:beer": "echo New npm version published, one beer for you !",
36 "jsdoc": "./node_modules/.bin/jsdoc -c jsdoc-conf.json",
37 "benchmark": "node benchmark/benchmark"
38 },
39 "author": "Joe Minichino <joe.minichino@gmail.com>",
40 "contributors": [
41 {
42 "name": "Dave",
43 "email": "github@obeliskos.com"
44 }
45 ],
46 "license": "MIT",
47 "bugs": {
48 "url": "https://github.com/techfort/LokiJS/issues"
49 },
50 "dependencies": {},
51 "devDependencies": {
52 "istanbul": "^0.4.4",
53 "jasmine": "^2.4.1",
54 "jsdoc": "^3.5.5",
55 "jshint": "^2.9.2",
56 "karma": "^1.1.2",
57 "karma-cli": "^1.0.1",
58 "karma-coverage": "^1.1.1",
59 "karma-jasmine": "^1.0.2",
60 "karma-phantomjs-launcher": "^1.0.1",
61 "mocha": "^2.5.3",
62 "phantomjs": "^1.9.20",
63 "rimraf": "^2.5.4",
64 "should": "^4.6.5",
65 "uglify-js": "^2.7.0"
66 }
67}