This repository has been archived by the owner on Dec 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
128 lines (128 loc) · 4.38 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "angular-stormpath",
"version": "0.2.0",
"description": "Stormpath Components for Angular.",
"main": "./dist/umd/stormpath-sdk-angular.js",
"module": "./dist/esm/src/index.js",
"typings": "./dist/esm/src/index.d.ts",
"scripts": {
"start": "concurrently --raw \"webpack-dev-server --open\" \"node demo/server/server.js stormpath-api\" \"npm run test:watch\"",
"stop": "killall -SIGINT stormpath-api",
"build:demo": "webpack -p",
"build:umd": "webpack --config webpack.config.umd.js",
"build:ngc": "ngc -p tsconfig-ngc.json",
"build:dist": "npm run build:umd && npm run build:ngc",
"build:clean": "rm -rf dist",
"test": "karma start",
"test:watch": "karma start --watch",
"pree2e": "webdriver-manager update",
"e2e": "protractor",
"e2e:client": "protractor --params.api https://raible.apps.stormpath.io",
"e2e:client+cookies": "protractor --params.api https://raible.apps.stormpath.io --params.storage cookies",
"e2e:all": "npm run e2e && npm run e2e:client && npm run e2e:client+cookies",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"typedoc": "mkdir -p dist/docs && typedoc --options typedoc.json src/*.ts --out dist/docs",
"gh-pages": "git checkout gh-pages && git merge master && npm run build:demo && npm run typedoc && git add . && git commit -m 'chore: build demo and docs' && git push && git checkout master",
"prerelease": "npm test",
"release": "standard-version --first-release && git push --follow-tags origin master && npm run build:dist && npm publish",
"postrelease": "npm run build:clean && npm run gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stormpath/stormpath-sdk-angular.git"
},
"keywords": [
"angular",
"angular2",
"angular-component",
"stormpath",
"authentication",
"authorization",
"security"
],
"author": "Stormpath, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stormpath/stormpath-sdk-angular/issues"
},
"homepage": "https://github.com/stormpath/stormpath-sdk-angular#readme",
"dependencies": {
"angular2-cookie": "^1.2.6",
"ng2-webstorage": "^2.0.0"
},
"devDependencies": {
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/platform-server": "^5.0.0",
"@types/chai": "^4.0.5",
"@types/jasmine": "^2.5.38",
"@types/sinon": "^4.0.0",
"@types/sinon-chai": "~2.7.26",
"@types/tether": "^1.4.0",
"angular2-template-loader": "^0.6.0",
"awesome-typescript-loader": "^3.0.0-beta.17",
"chai": "^4.1.2",
"commitizen": "^2.9.2",
"concurrently": "^3.1.0",
"conventional-changelog": "~1.1.0",
"conventional-changelog-cli": "^1.3.5",
"core-js": "^2.5.1",
"cz-conventional-changelog": "^2.1.0",
"express-stormpath": "^3.1.5",
"ghooks": "^2.0.0",
"imports-loader": "^0.7.0",
"jasmine-core": "^2.8.0",
"jasmine-reporters": "^2.2.0",
"karma": "^1.4.0",
"karma-coverage": "~1.1.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "~1.0.0",
"karma-remap-istanbul": "^0.6.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "^2.0.1",
"phantomjs-prebuilt": "~2.1.7",
"protractor": "^5.0.0",
"protractor-jasmine2-screenshot-reporter": "^0.5.0",
"raw-loader": "^0.5.1",
"rxjs": "^5.0.2",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"sourcemap-istanbul-instrumenter-loader": "~0.2.0",
"standard-version": "^4.0.0",
"string-replace-webpack-plugin": "^0.1.3",
"ts-loader": "^1.3.2s",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-loader": "^3.3.0",
"typedoc": "^0.9.0",
"typescript": "^2.4.2",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"zone.js": "^0.8.18"
},
"peerDependencies": {
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"rxjs": "^5.0.2"
},
"files": [
"dist"
],
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}