forked from techfort/LokiJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "lokijs",
"version": "1.4.3",
"description": "Fast document oriented javascript in-memory database",
"homepage": "http://lokijs.org",
"main": "src/lokijs.js",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/techfort/LokiJS.git"
},
"keywords": [
"javascript",
"document-oriented",
"mmdb",
"json",
"nosql",
"lokijs",
"in-memory"
],
"scripts": {
"lint": "jshint src",
"test:browser": "karma start karma.conf.js --single-run",
"test:node": "istanbul cover --dir coverage/nodejs node_modules/jasmine/bin/jasmine.js",
"pretest": "npm run lint",
"test": "npm run test:browser && npm run test:node",
"build:lokijs": "uglifyjs src/lokijs.js > build/lokijs.min.js",
"build:indexedAdapter": "uglifyjs src/loki-indexed-adapter.js > build/loki-indexed-adapter.min.js",
"build": "npm run build:lokijs && npm run build:indexedAdapter",
"postbuild": "karma start karma.build.conf.js --single-run",
"prepublish": "npm run build",
"clean": "rimraf build/* coverage/* node_modules",
"pour:beer": "echo New npm version published, one beer for you !",
"jsdoc": "./node_modules/.bin/jsdoc -c jsdoc-conf.json"
},
"author": "Joe Minichino <[email protected]>",
"contributors": [{
"name": "Dave",
"email": "[email protected]"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/techfort/LokiJS/issues"
},
"dependencies": {},
"devDependencies": {
"istanbul": "^0.4.4",
"jasmine": "^2.4.1",
"jsdoc": "^3.4.0",
"jshint": "^2.9.2",
"karma": "^1.1.2",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"mocha": "^2.5.3",
"phantomjs": "^1.9.20",
"rimraf": "^2.5.4",
"should": "^4.6.5",
"uglify-js": "^2.7.0"
}
}