forked from jbhelm/ngSemantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.9 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
{
"name": "ng-semantic",
"version": "1.1.13",
"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 'src/**/*.ts'",
"demo:server": "node tools/server.js",
"tsc": "tsc",
"tsc:w": "tsc -w -p ./demo",
"start": "tsc && concurrently \"tsc -w\" \"npm run tsc:w\" \"lite-server -c tools/dev.config.js\" ",
"prepublish": "npm run demo:lint",
"library:bundle": "tsc && rm -rf bundles && node tools/library.builder.js",
"demo:bundle": "tsc -p './demo' && node tools/demo.builder.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vladotesanovic/ngSemantic"
},
"engines": {
"node": ">= 5.4.1"
},
"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.1",
"@angular/compiler": "^2.0.1",
"@angular/core": "^2.0.1",
"@angular/forms": "^2.0.1",
"@angular/http": "^2.0.1",
"@angular/platform-browser": "^2.0.1",
"@angular/platform-browser-dynamic": "^2.0.1",
"@angular/router": "^3.0.0",
"@angular/upgrade": "^2.0.1",
"@types/jasmine": "^2.5.36",
"@types/jquery": "^2.0.34",
"@types/node": "^6.0.46",
"angular2-in-memory-web-api": "0.0.20",
"codelyzer": "1.0.0-beta.4",
"concurrently": "^2.2.0",
"core-js": "^2.4.1",
"lite-server": "^2.2.2",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
"systemjs": "^0.19.27",
"systemjs-builder": "^0.15.26",
"tslint": "^3.14.0",
"typescript": "^2.0.2",
"zone.js": "^0.6.23"
}
}