-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "typescript-react-draggable",
"version": "1.0.0",
"description": "A draggable component written in TypeScript for both HTML and SVG applications. The component is also compiled and minified to be used with JSPM. ",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suhdev/typescript-react-draggable.git"
},
"keywords": [
"Draggable",
"TypeScript",
"Zoomable",
"SVG",
"React",
"SVG",
"HTML"
],
"author": "Suhail Abood <[email protected]> (suhailabood.me)",
"license": "ISC",
"bugs": {
"url": "https://github.com/suhdev/typescript-react-draggable/issues"
},
"homepage": "https://github.com/suhdev/typescript-react-draggable#readme",
"devDependencies": {
"jslint": "^0.10.1",
"jspm": "^0.16.42",
"tslint": "^3.14.0",
"typescript": "^1.8.10"
},
"dependencies": {
"d3-drag": "^1.0.1",
"d3-zoom": "^1.0.3"
},
"jspm": {
"registry": "npm",
"main": "es6/index.js",
"format": "es6",
"dependencies": {
"d3-drag": "npm:d3-drag@^1.0.1",
"d3-zoom": "npm:d3-zoom@^1.0.3",
"react": "npm:react@^15.3.0",
"react-dom": "npm:react-dom@^15.3.0"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
},
"typings": "./react-draggable.d.ts"
}