forked from angular-split/angular-split
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (50 loc) · 1.47 KB
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
{
"name": "angular-split",
"version": "0.1.19",
"description": "Angular (2+) UI library to split views.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/",
"build:aot": "ngc -p tsconfig.json",
"build:jit": "tsc -p tsconfig.json",
"build": "npm run clean && npm run build:aot",
"lint": "tslint --force \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bertrandg/angular-split.git"
},
"keywords": [
"angular",
"angular2",
"split",
"flexbox"
],
"author": "bertrandg (https://github.com/bertrandg)",
"license": "ISC",
"bugs": {
"url": "https://github.com/bertrandg/angular-split/issues"
},
"homepage": "https://github.com/bertrandg/angular-split#readme",
"dependencies": {
"@angular/common": "^2.4.3",
"@angular/compiler": "^2.4.3",
"@angular/core": "^2.4.3",
"@angular/platform-browser": "^2.4.3",
"core-js": "2.4.1",
"rimraf": "^2.5.4",
"rxjs": "5.0.2",
"reflect-metadata": "^0.1.3",
"typescript": "2.0.10",
"zone.js": "0.7.4"
},
"devDependencies": {
"@angular/compiler-cli": "^2.4.3",
"@angular/platform-server": "^2.4.3",
"@types/jasmine": "2.2.30",
"@types/node": "6.0.54",
"typescript": "^2.0.10",
"tslint": "^3.4.0"
}
}