-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "web-reranking",
"version": "1.0.0",
"description": "A Web IR project",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel src -d build --source-maps inline",
"start": "npm run build && node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/watcharaphat/web-reranking",
"author": "watcharaphat <watcharaphat.3166@gmail.com>",
"license": "MIT",
"private": null,
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"cheerio": "^1.0.0-rc.2",
"fs": "^0.0.1-security",
"pagerank-js": "^0.3.0",
"recursive-readdir": "^2.2.1"
}
}