-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "json-groupby",
"version": "1.1.1",
"description": "Group array of json based on associated properties.",
"main": "json-groupby.js",
"scripts": {
"test": "mocha test/test.js",
"build-debug": "browserify json-groupby.js --debug --standalone JSONGroupBy | exorcist dist/json-groupby.js.map > dist/json-groupby.js",
"build-min": "browserify json-groupby.js --standalone JSONGroupBy | uglifyjs -c -m > dist/json-groupby.min.js",
"build": "npm run build-debug && npm run build-min"
},
"repository": {
"type": "git",
"url": "https://github.com/gagan-bansal/json-groupby"
},
"keywords": [
"geojson",
"group",
"classify",
"group-by",
"categories",
"json"
],
"author": "Gagan Bansal <gaganbansal123@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gagan-bansal/json-groupby/issues"
},
"homepage": "https://github.com/gagan-bansal/json-groupby",
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chance": "^1.0.2",
"exorcist": "^2.0.0",
"mocha": "^10.3.0",
"uglify-js": "^2.6.1"
}
}