-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 694 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 694 Bytes
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
{
"name": "azure-search",
"version": "0.0.21",
"description": "A client for the Azure Search service",
"main": "index.js",
"scripts": {
"browserify": "browserify azure-search.js | uglifyjs > azure-search.min.js",
"build": "npm run clean && npm run lint && npm run browserify",
"clean": "rimraf *.min.js",
"lint": "standard",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/azure-contrib/node-azure-search.git"
},
"author": "richard astbury",
"license": "MIT",
"devDependencies": {
"browserify": "^13.1.0",
"mocha": "^5.2.0",
"rimraf": "^2.5.0",
"standard": "^7.1.0",
"uglify-js": "^2.4.0"
}
}