-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "angular-draggable",
"version": "1.0.1",
"description": "Angular directive draggable.",
"main": "dist/draggable.module.js",
"typings": "dist/draggable.module.d.ts",
"scripts": {
"compile": "node ./node_modules/@angular/compiler-cli/src/main.js -p src/",
"prepublish": "npm run clean && npm run compile && rm -rf dist/node_modules && npm run build",
"clean": "rm -rf dist && rm -rf bundles",
"build": "node make.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoderAjay/angular-draggable.git"
},
"keywords": [
"Angular-draggable",
"ng draggable directive",
"draggable directive",
"directive",
"Angular"
],
"author": "Ajay Singh (meajaysingh@hotmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoderAjay/angular-draggable/issues"
},
"homepage": "https://github.com/CoderAjay/angular-draggable#readme",
"dependencies": {},
"peerDependencies": {
"@angular/core": "^2.4.10",
"rxjs": "^5.0.0-beta.12",
"zone.js": "^0.6.23"
},
"devDependencies": {
"@angular/common": "^2.4.10",
"@angular/compiler": "^2.4.10",
"@angular/compiler-cli": "^2.4.10",
"@angular/core": "^2.4.10",
"rxjs": "^5.0.0-beta.12",
"systemjs-builder": "^0.16.4",
"tslint": "3.13.0",
"typescript": "~2.0.3",
"zone.js": "^0.6.23"
}
}