forked from HNeukermans/adal-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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": "adal-ts",
"version": "0.6.0",
"description": "adal.js typescript rewrite",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"test": "karma start",
"build": "tsc",
"webpack": "webpack",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HNeukermans/adal-ts.git"
},
"keywords": [
"adal",
"typescript",
"angular 2"
],
"author": "Hannes Neukermans",
"license": "MIT",
"bugs": {
"url": "https://github.com/HNeukermans/adal-ts/issues"
},
"homepage": "https://github.com/HNeukermans/adal-ts#readme",
"devDependencies": {
"@types/jasmine": "^2.2.33",
"@types/js-base64": "^2.1.3",
"@types/lodash": "^4.14.40",
"awesome-typescript-loader": "3.0.0-beta.17",
"core-js": "^2.3.0",
"coveralls": "^2.11.15",
"es6-shim": "^0.35.0",
"istanbul-instrumenter-loader": "^1.0.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.4.1",
"jasmine-node": "^1.14.5",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lodash": "^4.17.2",
"phantomjs-prebuilt": "^2.1.7",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.0-beta.12",
"ts-loader": "^1.3.3",
"tslint": "4.2.0",
"typescript": "^2.1.4",
"webpack": "2.2.0-rc.3"
},
"peerDependencies": {}
}