-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.63 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
{
"name": "inverted-index-api",
"version": "1.0.0",
"description": "implementation of a search functionality for software applications",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "gulp serve",
"test": "gulp coverage",
"transpile": "gulp babelifySrcFiles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomipaul/inverted-index-api.git"
},
"keywords": [
"search",
"inverted",
"index",
"plummage",
"full",
"text",
"search"
],
"author": "Oluwatomi Akande",
"license": "ISC",
"bugs": {
"url": "https://github.com/tomipaul/inverted-index-api/issues"
},
"homepage": "https://github.com/tomipaul/inverted-index-api#readme",
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-rest-spread"
]
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-babel-istanbul": "^1.6.0",
"gulp-cli": "^1.3.0",
"gulp-coveralls": "^0.1.4",
"gulp-inject-modules": "^1.0.0",
"gulp-jasmine-node": "^1.0.7",
"gulp-nodemon": "^2.2.1",
"gulp-rename": "^1.2.2",
"jasmine": "^2.6.0",
"jasmine-node": "^1.14.5",
"supertest": "^3.0.0",
"dotenv": "^4.0.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"multer": "^1.3.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0"
},
"engines": {
"node": "6.3.1"
}
}