Skip to content

Commit fb84452

Browse files
committed
update deps version
1 parent b4493a0 commit fb84452

File tree

1 file changed

+18
-31
lines changed

1 file changed

+18
-31
lines changed

package.json

Lines changed: 18 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22
"name": "ng2-draggable",
33
"version": "0.1.0",
44
"description": "Angular2 directive draggable.",
5-
"main": "dist/ng-draggable.js",
6-
"typings": "ng2-draggable.d.ts",
5+
"main": "dist/draggable.module.js",
6+
"typings": "dist/draggable.module.d.ts",
77
"scripts": {
8-
"task.compile:system": "./.config/bundle.js",
9-
"task.compile:common": "./node_modules/.bin/tsc -p tsconfig.publish.json",
10-
"task.compile": "npm run task.compile:common && npm run task.compile:system",
11-
"task.clean": "./node_modules/.bin/del dist \"ng2-draggable.+(js|d.ts|js.map)\"",
12-
"prepublish": "npm run task.clean && npm run task.compile",
13-
"lite": "lite-server",
14-
"start": "concurrently \"npm run ;tsc:w\" \"npm run lite\" ",
15-
"tsc:w": "tsc -w"
8+
"compile": "node ./node_modules/@angular/compiler-cli/src/main.js -p src/",
9+
"prepublish": "npm run clean && npm run compile && rm -rf dist/node_modules && npm run build",
10+
"clean": "rm -rf dist && rm -rf bundles",
11+
"build": "node make.js"
1612
},
1713
"repository": {
1814
"type": "git",
@@ -33,28 +29,19 @@
3329
"homepage": "https://github.com/CoderAjay/ng2Draggable#readme",
3430
"dependencies": {},
3531
"peerDependencies": {
36-
"@angular/common": "~2.2.0",
37-
"@angular/compiler": "~2.2.0",
38-
"@angular/core": "~2.2.0"
32+
"@angular/core": "^2.4.10",
33+
"rxjs": "^5.0.0-beta.12",
34+
"zone.js": "^0.6.23"
3935
},
4036
"devDependencies": {
41-
"@angular/common": "~2.2.0",
42-
"@angular/compiler": "~2.2.0",
43-
"@angular/core": "~2.2.0",
44-
"@angular/platform-browser": "~2.2.0",
45-
"@angular/platform-browser-dynamic": "~2.2.0",
46-
"core-js": "^2.4.1",
47-
"reflect-metadata": "^0.1.8",
48-
"rxjs": "5.0.0-beta.12",
49-
"systemjs": "0.19.39",
50-
"zone.js": "^0.6.25",
51-
"@types/core-js": "^0.9.34",
52-
"@types/node": "^6.0.45",
53-
"concurrently": "^3.0.0",
54-
"del": "^2.2.2",
55-
"del-cli": "^0.2.0",
56-
"lite-server": "^2.2.2",
57-
"systemjs-builder": "^0.15.34",
58-
"typescript": "^2.0.3"
37+
"@angular/common": "^2.4.10",
38+
"@angular/compiler": "^2.4.10",
39+
"@angular/compiler-cli": "^2.4.10",
40+
"@angular/core": "^2.4.10",
41+
"rxjs": "^5.0.0-beta.12",
42+
"systemjs-builder": "^0.16.4",
43+
"tslint": "3.13.0",
44+
"typescript": "~2.0.3",
45+
"zone.js": "^0.6.23"
5946
}
6047
}

0 commit comments

Comments
 (0)