-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "sainsburys-node-scraper",
"env": "env",
"scripts": {
"start": "NODE_ENV=development babel-node ./start.js",
"watch": "watch 'npm run start'",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register scripts/tests/**.unit.js",
"test:watch": "watch 'npm run test'"
},
"version": "1.0.0",
"main": "start.js",
"repository": {
"url": "git+https://github.com/azz0r/sainsburys-node-scraper.git",
"type": "git"
},
"author": "azz0r",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"fs": "^0.0.1-security",
"jsonfile": "^2.4.0",
"mocha": "^3.1.2",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"watch": "^1.0.1"
},
"bugs": {
"url": "https://github.com/azz0r/sainsburys-node-scraper/issues"
},
"homepage": "https://github.com/azz0r/sainsburys-node-scraper#readme",
"keywords": [
"node",
"scrape",
"mocha",
"chai"
],
"engine": "node 6.8.1"
}