-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "zomato.js",
"version": "1.1.0",
"description": "zomato.js is a simple promise based JS wrapper for the Zomato API",
"author": {
"name": "Jayesh Solanki",
"email": "jayeshsolanki93@gmail.com",
"url": "http://jayeshsolanki.com"
},
"keywords": [
"zomato",
"api",
"restaurant"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jayeshsolanki93/zomato.js.git"
},
"bugs": {
"url": "https://github.com/jayeshsolanki93/zomato.js/issues"
},
"main": "./lib/zomato.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "mocha --compilers js:babel-register --timeout 10000",
"coverage": "istanbul cover node_modules/.bin/_mocha -- --compilers js:babel-register --timeout 10000",
"lint": "eslint ./src ./test --quiet",
"clean": "rm -rf ./lib",
"build-server": "babel ./src -d ./lib",
"build": "npm run clean && npm run build-server",
"prepublish": "babel ./src -d ./lib"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.3.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.0.2"
},
"dependencies": {}
}