-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "inverted-index",
"version": "1.0.0",
"description": "An Inverted Index is an Index Data Structure storing a mapping from content to location (i.e. a mapping of words or numbers to it's location in a database file).",
"main": "index.js",
"scripts": {
"test": "karma start --single-run",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela-moseni/inverted-index.git"
},
"keywords": [
"index",
"inverted",
"index",
"json",
"file"
],
"author": "Halimat Mercy Oseni",
"license": "MIT",
"bugs": {
"url": "https://github.com/andela-moseni/inverted-index/issues"
},
"homepage": "https://github.com/andela-moseni/inverted-index#readme",
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"gulp-util": "^3.0.8",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4"
},
"dependencies": {
"browser-sync": "^2.18.8",
"express": "^4.15.2",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-rename": "^1.2.2",
"jasmine": "^2.5.3",
"karma": "^1.5.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-spec-reporter": "0.0.30",
"karma-verbose-reporter": "0.0.6",
"path": "^0.12.7"
}
}