forked from achimha/ng2-select2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.71 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
{
"name": "ng2-select2",
"version": "1.0.0-beta.10",
"description": "Angular2 wrapper for select2",
"main": "./dist/ng2-select2.bundle.js",
"jsnext:main": "./dist/ng2-select2.js",
"typings": "./dist/ng2-select2.d.ts",
"module": "./dist/ng2-select2.js",
"types": "./dist/ng2-select2.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/NejcZdovc/ng2-select2.git"
},
"keywords": [
"angular2",
"select2",
"wrap"
],
"author": "Nejc Zdovc <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NejcZdovc/ng2-select2/issues"
},
"homepage": "https://github.com/NejcZdovc/ng2-select2",
"scripts": {
"finish": "mv lib/ng2-select2.component.ts.bak lib/ng2-select2.component.ts && cp README.md dist && rimraf dist/ng2-select2.component.css",
"build": "rimraf dist && ts-node tools/inline-styles.ts && tsc -p tsconfig-esm.json && rollup -c rollup.config.js dist/ng2-select2.js > dist/ng2-select2.bundle.js && cp package.json dist && ts-node tools/cleanup.ts && ngc -c tsconfig-esm.json && npm run finish"
},
"dependencies": {
"@types/jquery": "^2.0.39",
"@types/select2": "^4.0.31"
},
"peerDependencies": {
"@angular/core": "^2.2.0"
},
"devDependencies": {
"@angular/common": "^2.4.4",
"@angular/compiler": "^2.4.4",
"@angular/compiler-cli": "^2.4.4",
"@angular/core": "^2.4.4",
"@angular/forms": "^2.4.4",
"@angular/platform-browser": "^2.4.4",
"@angular/platform-browser-dynamic": "^2.4.4",
"@types/node": "^7.0.0",
"core-js": "^2.4.1",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"rxjs": "^5.0.3",
"ts-node": "^2.0.0",
"typescript": "^2.1.5",
"zone.js": "^0.7.4"
}
}