forked from zazuko/d3-sparql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1011 Bytes
/
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
{
"name": "d3-sparql",
"version": "1.0.0",
"description": "Queries a SPARQL endpoint with a SELECT query and provides the data d3 “usable”",
"keywords": [
"d3",
"d3-module"
],
"license": "BSD-3-Clause",
"main": "build/d3-sparql.js",
"jsnext:main": "index",
"homepage": "https://github.com/zazuko/d3-sparql",
"repository": {
"type": "git",
"url": "https://github.com/zazuko/d3-sparql.git"
},
"scripts": {
"pretest": "rimraf build && mkdirp build && rollup -g d3-request:d3 -f umd -n d3 -o build/d3-sparql.js -- index.js",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm run test && uglifyjs build/d3-sparql.js -c -m -o build/d3-sparql.min.js",
"postpublish": "zip -j build/d3-sparql.zip -- LICENSE README.md build/d3-sparql.js build/d3-sparql.min.js"
},
"devDependencies": {
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"rollup": "0.27",
"tape": "4",
"uglify-js": "2"
},
"dependencies": {
"d3-request": "^1.0.5"
}
}