-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "joiner",
"version": "2.1.3",
"description": "A simple utility for SQL-like joins with Json or GeoJson data in Node, the browser and on the command line. Also creates join reports so you can know how successful a given join was.",
"main": "dist/joiner.node.js",
"module": "src/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "standard src/**/* bin/**/* && mocha",
"build:node": "rollup --config",
"build:umd": "rollup -c --banner \"$(preamble)\" -f umd -n joiner -o dist/joiner.js -- src/index.js && uglifyjs -O preamble=\"\\\"$(preamble)\\\"\" -o dist/joiner.min.js -cm -- dist/joiner.js",
"build": "npm run build:node && npm run build:umd",
"start": "npm run build && npm test"
},
"bin": {
"joiner": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mhkeller/joiner"
},
"keywords": [
"join",
"sql",
"data join",
"json",
"geojson"
],
"author": {
"name": "Michael Keller",
"url": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mhkeller/joiner/issues"
},
"homepage": "https://github.com/mhkeller/joiner",
"dependencies": {
"d3-dsv": "^1.0.3",
"d3-queue": "^3.0.3",
"dbf": "^0.1.4",
"mkdirp": "^0.5.1",
"optimist": "^0.6.1",
"shapefile": "^0.6.2",
"underscore": "~1.6.0"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"indian-ocean": "^2.0.1",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"package-preamble": "0.0.2",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"standard": "^8.6.0",
"uglify-js": "^3.13.5"
}
}