forked from vladotesanovic/ngSemantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.82 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
{
"name": "ng-semantic",
"version": "1.1.1",
"main": "./ng-semantic.js",
"description": "Angular2 building blocks based on Semantic UI",
"scripts": {
"demo:lint": "tslint -c ./tslint.json 'demo/app/**/*.ts'",
"library:lint": "tslint -c ./tslint.json 'ng-semantic/**/*.ts'",
"demo:server": "node server.js",
"typings": "typings install",
"tsc:w": "tsc -w -p './demo'",
"start": "tsc && concurrently \"tsc -w\" \"npm run tsc:w\" \"lite-server -c dev.config.js\" ",
"library:bundle": "tsc && rm -rf bundles && node library.builder.js",
"demo:bundle": "tsc -p './demo' && node demo.builder.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vladotesanovic/ngSemantic"
},
"engines": {
"node": ">= 5.4.1 < 6"
},
"keywords": [
"angular",
"angular2",
"semanticui",
"semantic-ui"
],
"author": "Vlado Tešanović",
"bugs": {
"url": "https://github.com/vladotesanovic/ngSemantic/issues"
},
"typings": "./ng-semantic.d.ts",
"homepage": "https://ng-semantic.herokuapp.com/",
"license": "MIT",
"devDependencies": {
"@angular/common": "2.0.0-rc.5",
"@angular/compiler": "2.0.0-rc.5",
"@angular/core": "2.0.0-rc.5",
"@angular/forms": "0.3.0",
"@angular/http": "2.0.0-rc.5",
"@angular/platform-browser": "2.0.0-rc.5",
"@angular/platform-browser-dynamic": "2.0.0-rc.5",
"@angular/router": "3.0.0-rc.1",
"@angular/upgrade": "2.0.0-rc.5",
"angular2-in-memory-web-api": "0.0.15",
"systemjs": "0.19.27",
"core-js": "^2.4.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12",
"concurrently": "^2.2.0",
"lite-server": "^2.2.2",
"systemjs-builder": "^0.15.26",
"tslint": "^3.14.0",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"codelyzer": "0.0.20"
}
}