forked from ObaidUrRehman/ng-drag-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ng-drag-drop",
"version": "5.0.0",
"description": "Drag & Drop for Angular - based on HTML5 with no external dependencies.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 0",
"start": "tsc -w",
"transpile": "ngc",
"build": "npm run transpile",
"prepublishOnly": "npm run build",
"lint": "tslint ./src/**/*.ts -t verbose",
"dev": "concurrently \"npm start\" \"cd demo && npm start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ObaidUrRehman/ng-drag-drop.git"
},
"keywords": [
"Angular2",
"Angular4",
"Angular6",
"Angular",
"drag",
"drop",
"dragdrop"
],
"author": "Obaid ur Rehman <obaid.urrehman@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ObaidUrRehman/ng-drag-drop/issues"
},
"homepage": "https://github.com/ObaidUrRehman/ng-drag-drop#readme",
"peerDependencies": {
"@angular/common": ">=6.0.1",
"@angular/core": ">=6.0.1"
},
"devDependencies": {
"@angular/common": "^6.0.1",
"@angular/compiler": "^6.0.1",
"@angular/compiler-cli": "^6.0.1",
"@angular/core": "^6.0.1",
"@angular/platform-browser": "^6.0.1",
"@angular/platform-browser-dynamic": "^6.0.1",
"@types/core-js": "0.9.43",
"canonical-path": "0.0.2",
"concurrently": "^3.5.0",
"core-js": "^2.4.1",
"http-server": "^0.11.0",
"jasmine-core": "~2.8.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-htmlfile-reporter": "^0.3.4",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^1.0.0",
"lite-server": "^2.3.0",
"lodash": "^4.17.4",
"protractor": "~5.3.1",
"rimraf": "^2.6.2",
"rxjs": "6.1.0",
"tslint": "^5.8.0",
"typescript": "~2.7.2",
"zone.js": "^0.8.18"
}
}