-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 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
34
{
"name": "distiller",
"version": "0.0.1",
"description": "",
"main": "./src/es5/scrapper.js",
"scripts": {
"start": "npm run build && node --use_strict es5/index.js",
"dev": "nodemon --exec babel-node --use_strict es6/index.js",
"build": "babel es6 --out-dir es5 --source-maps",
"watch": "babel es6 --out-dir es5 --source-maps --watch",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"test": "mocha --compilers js:babel-core/register --reporter spec"
},
"author": "Mike Chen",
"license": "ISC",
"dependencies": {
"cheerio": "^0.22.0",
"express": "^4.15.2",
"node-readability": "^2.2.0",
"request": "^2.81.0",
"retext-keywords": "^3.1.0",
"url-join": "^1.1.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"flow-bin": "^0.41.0",
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"repository": "https://github.com/cyc115/ZipRecruiterHelper.git"
}