forked from swimlane/ngx-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.69 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@swimlane/ngx-dnd",
"version": "2.2.0",
"description": "Drag and Drop for Angular2 and beyond!",
"main": "release/index.js",
"typings": "release/index.d.ts",
"files": [
"release"
],
"scripts": {
"check": "npm-check --skip-unused",
"test": "npm run lint && karma start",
"test:watch": "npm run test -- --auto-watch --no-single-run",
"lint": "tslint \"./src/{,**/}*.ts\" \"./demo/{,**/}*.ts\"",
"version": "chg release -y && git add -A CHANGELOG.md && npm run release",
"clean": "npm-run-all -p clean:*",
"clean:dist": "rimraf dist",
"clean:release": "rimraf release",
"build": "webpack --display-error-details",
"build:release": "cross-env NODE_ENV=production npm run build",
"build:package": "cross-env NODE_ENV=package npm run build",
"build:ts": "tsc",
"build:aot": "ngc",
"build:css": "postcss --use autoprefixer dist/*.css -d dist/",
"watch": "webpack --display-error-details --watch",
"start": "webpack-dev-server",
"start:hmr": "webpack-dev-server --env.HMR",
"release": "npm-run-all build:release",
"np": "npm run package && np",
"package": "npm-run-all -s clean package:aot build:package package:replace package:minify",
"package:ts": "tsc --outDir release",
"package:aot": "ngc -p tsconfig-aot.json",
"package:replace": "node ./config/replace.js",
"package:replace-scss": "node ./config/replace-scss.js",
"package:minify": "uglifyjs release/index.js --source-map release/index.min.js.map --source-map-url release/index.js.map --compress --mangle --screw-ie8 --output release/index.min.js",
"deploy": "npm run build && node ./config/deploy.js",
"profile": "NODE_ENV=production webpack --profile --json > dist/stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swimlane/ngx-dnd.git"
},
"keywords": [
"angular2",
"dnd",
"drag",
"drop",
"angular"
],
"authors": [
"Jayson Harshbarger"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/swimlane/ngx-dnd/issues"
},
"homepage": "https://github.com/swimlane/ngx-dnd#readme",
"peerDependencies": {
"@angular/animations": "^4.2.6",
"@angular/common": "~4.2.6",
"@angular/compiler": "~4.2.6",
"@angular/core": "~4.2.6",
"@angular/platform-browser": "~4.2.6",
"@angular/platform-browser-dynamic": "~4.2.6",
"core-js": "2.4.1",
"rxjs": "5.0.3",
"zone.js": "^0.7.6"
},
"devDependencies": {
"@angular/animations": "^4.2.6",
"@angular/common": "^4.2.6",
"@angular/compiler": "^4.2.6",
"@angular/compiler-cli": "^4.2.6",
"@angular/core": "^4.2.6",
"@angular/flex-layout": "^2.0.0-beta.7",
"@angular/forms": "^4.2.6",
"@angular/http": "^4.2.6",
"@angular/platform-browser": "^4.2.6",
"@angular/platform-browser-dynamic": "^4.2.6",
"@angular/platform-server": "^4.2.6",
"@angular/router": "^4.2.6",
"@swimlane/ngx-ui": "^14.2.4",
"@types/core-js": "^0.9.41",
"@types/jasmine": "^2.5.53",
"@types/node": "^7.0.5",
"angular2-template-loader": "^0.6.0",
"autoprefixer": "^6.7.0",
"awesome-typescript-loader": "~3.0.0-beta.10",
"chg": "^0.3.2",
"clean-webpack-plugin": "^0.1.15",
"codelyzer": "0.0.28",
"copy-webpack-plugin": "^4.0.0",
"core-js": "2.4.1",
"cpx": "^1.5.0",
"cross-env": "^3.2.3",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "^0.9.0",
"fs-extra": "^2.0.0",
"gh-pages": "^0.12.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.26.0",
"istanbul-instrumenter-loader": "^1.2.0",
"jasmine-core": "^2.5.2",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-remap-coverage": "^0.1.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"node-sass": "^4.5.3",
"npm-check": "^5.4.5",
"npm-run-all": "^4.0.1",
"postcss": "^5.2.11",
"postcss-loader": "^1.2.2",
"raw-loader": "^0.5.1",
"replace": "^0.3.0",
"rimraf": "^2.5.2",
"rxjs": "^5.0.3",
"sass-loader": "^4.1.1",
"source-map-loader": "^0.1.6",
"style-loader": "^0.13.1",
"to-string-loader": "^1.1.5",
"ts-helpers": "^1.1.2",
"tslint": "^4.0.2",
"tslint-config-swimlane": "^2.0.1",
"tslint-loader": "^3.3.0",
"typescript": "^2.2.2",
"uglify-js": "^2.8.12",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-combine-loaders": "^2.0.3",
"webpack-dev-server": "^2.2.0",
"webpack-merge": "^2.4.0",
"webpack-notifier": "^1.5.0",
"zone.js": "^0.7.6"
},
"dependencies": {
"dragula": "^3.7.2"
}
}