-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
{
"name": "angular2-virtual-select",
"version": "1.1.14",
"description": "A native angular 2 select and multi select component with virtual scrolling to allow thousands of options in one select component",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/farin99/angular2-virtual-select"
},
"keywords": [
"angular2",
"select",
"virtual",
"scroll",
"multi"
],
"author": "Yoni Farin <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/farin99/angular2-virtual-select#readme",
"devDependencies": {
"typescript": "^2.0.10",
"@angular/common": "^2.3.1",
"@angular/compiler": "^2.3.1",
"@angular/core": "^2.3.1",
"@angular/forms": "^2.3.1",
"@angular/http": "^2.3.1",
"@angular/platform-browser": "^2.3.1",
"@angular/platform-browser-dynamic": "^2.3.1",
"@angular/compiler-cli": "^2.4.5",
"@angular/platform-server": "^2.4.5",
"core-js": "^2.4.1",
"rxjs": "^5.0.1",
"ts-helpers": "^1.1.1",
"zone.js": "^0.7.2"
},
"peerDependencies": {
"@angular/core": "^2.0.0",
"@angular/common": "^2.0.0",
"@angular/forms": "^2.0.0"
},
"scripts": {
"clean": "rm -rf dist",
"aot": "node_modules/.bin/ngc -p src/tsconfig-aot.json",
"build": "npm run clean && npm run aot",
"p": "npm run build; npm version patch; npm publish"
}
}