forked from blackbaud/auth-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.21 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
{
"name": "@blackbaud/auth-client",
"version": "2.10.0",
"description": "Provides methods for obtaining an authentication token from the Blackbaud authentication service.",
"main": "dist/bundles/auth-client.umd.js",
"module": "index.ts",
"scripts": {
"ci": "npm run test:ci && npm run build",
"test": "npm run lint && npm run test:unit",
"test:ci": "npm run test:unit:ci",
"test:unit": "npm run test:unit:base -- config/karma/local.karma.conf.js",
"test:unit:ci": "npm run test:unit:base -- config/karma/ci.karma.conf.js",
"test:unit:base": "node --max-old-space-size=4096 node_modules/karma/bin/karma start",
"pretest": "npm run lint",
"compress": "uglifyjs dist/bundles/auth-client.umd.js -m -o dist/bundles/auth-client.umd.min.js",
"build": "rimraf dist && tsc && webpack --config config/webpack/webpack.prod.config.js && npm run compress",
"watch": "npm run test:unit -- --auto-watch --no-single-run",
"lint": "tslint 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackbaud/auth-client.git"
},
"author": "Blackbaud, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackbaud/auth-client/issues"
},
"homepage": "https://github.com/blackbaud/auth-client#readme",
"devDependencies": {
"@types/core-js": "0.9.41",
"@types/jasmine": "2.5.47",
"@types/jasmine-ajax": "3.1.36",
"@types/webpack": "2.2.15",
"core-js": "2.4.1",
"fs-extra": "3.0.1",
"istanbul": "0.4.5",
"istanbul-instrumenter-loader": "0.1.0",
"jasmine": "2.6.0",
"jasmine-ajax": "3.3.1",
"karma": "1.7.0",
"karma-browserstack-launcher": "1.2.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.0.1",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.3",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"raw-loader": "0.5.1",
"remap-istanbul": "0.9.5",
"rimraf": "2.6.1",
"source-map-inline-loader": "github:blackbaud-bobbyearl/source-map-inline-loader",
"ts-loader": "2.0.3",
"tslint": "5.2.0",
"tslint-loader": "3.5.3",
"typescript": "2.3.2",
"uglify-js": "3.0.15",
"webpack": "2.5.1"
}
}