-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "d3scription",
"version": "1.1.0",
"description": "D3.js tooltip plugin made simple. With single-page apps in mind. ",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run compile",
"watch": "node_modules/webpack/bin/webpack.js --watch",
"compile": "node_modules/typescript/bin/tsc index.ts -m commonjs -d && node_modules/webpack/bin/webpack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GlobalWebIndex/d3scription.git"
},
"keywords": [
"d3",
"tip",
"tooltip",
"description"
],
"author": "GlobalWebIndex / Marek Fajkus",
"license": "MIT",
"bugs": {
"url": "https://github.com/GlobalWebIndex/d3scription/issues"
},
"homepage": "https://github.com/GlobalWebIndex/d3scription#readme",
"devDependencies": {
"ts-loader": "^0.8.2",
"typescript": "^2.1.0-dev.20160804",
"webpack": "^1.13.1"
},
"dependencies": {
"d3": "^4.2.1"
},
"publishConfig": {
"registry":"https://npm.pkg.github.com"
}
}