forked from Erdiko/ngx-user-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (75 loc) · 2.68 KB
/
package.json
File metadata and controls
78 lines (75 loc) · 2.68 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@erdiko/user-admin",
"version": "1.1.5",
"description": "AngularJS based User Admin components for use with the Erdiko User Admin",
"scripts": {
"start": "npm run cleanup && npm run build && concurrently \"ngc -w\" \"lite-server\" ",
"e2e": "npm run build && concurrently \"http-server -s\" \"protractor protractor.config.js\" --kill-others --success first",
"lint": "tslint ./app/**/*.ts -t verbose",
"lite": "lite-server",
"pree2e": "webdriver-manager update",
"test": "npm run cleanup && npm run build && concurrently \"ngc -w\" \"karma start karma.conf.js\"",
"test-once": "npm run cleanup && npm run build && karma start karma.conf.js --single-run",
"cleanup": "rm -rf src/node_modules src/*metadata* src/*ngfactory* src/*.map src/*ngsummary* *ngsummary*",
"ngc": "ngc",
"ngc:w": "ngc -w",
"build": "rm -rf lib && ngc -p src && ngc",
"prepublish": "npm run ngc-build",
"ngc-build": "npm run cleanup && rm -rf lib && rm -rf \"src/node_modules\" && \"node_modules/.bin/ngc\" -p tsconfig-aot.json"
},
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/saarmstrong/ng-user-admin.git"
},
"author": "Andy Armstrong",
"license": "ISC",
"bugs": {
"url": "https://github.com/saarmstrong/ng-user-admin/issues"
},
"homepage": "https://github.com/saarmstrong/ng-user-admin#readme",
"dependencies": {
},
"devDependencies": {
"@angular/common": "~2.4.0",
"@angular/compiler": "^2.4.10",
"@angular/compiler-cli": "^2.4.10",
"@angular/core": "~2.4.0",
"@angular/forms": "~2.4.0",
"@angular/http": "~2.4.0",
"@angular/platform-browser": "~2.4.0",
"@angular/platform-browser-dynamic": "~2.4.0",
"@angular/platform-server": "^2.4.10",
"@angular/router": "~3.4.0",
"@types/es6-shim": "^0.31.32",
"@types/jasmine": "^2.5.46",
"@types/node": "^6.0.65",
"@types/selenium-webdriver": "^2.53.42",
"angular-in-memory-web-api": "~0.2.4",
"canonical-path": "0.0.2",
"concurrently": "^3.2.0",
"core-js": "^2.4.1",
"http-server": "^0.9.0",
"jasmine-core": "~2.5.2",
"karma": "^1.3.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.2",
"lite-server": "^2.2.2",
"lodash": "^4.16.4",
"protractor": "~4.0.14",
"reflect-metadata": "^0.1.8",
"rimraf": "^2.5.4",
"rxjs": "5.0.1",
"systemjs": "0.19.40",
"tslint": "^4.0.2",
"typescript": "^2.0.10",
"webdriver-manager": "10.2.10",
"zone.js": "^0.7.4",
"bootstrap": "^3.3.7",
"moment": "^2.18.1",
"ngx-bootstrap": "^1.6.6"
}
}