-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
67 lines (67 loc) · 2.24 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
{
"name": "@blackbaud/sky-addin-client",
"version": "1.6.1",
"description": "SKY add-in client",
"main": "dist/bundles/sky-addin-client.umd.js",
"module": "index.ts",
"scripts": {
"ci": "npm run test:ci && npm run build",
"test": "npm run lint && npm run test:unit:ci",
"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 node_modules/karma/bin/karma start",
"pretest": "npm run lint",
"build": "rimraf dist && tsc && webpack --config config/webpack/webpack.prod.config.js",
"watch": "npm run test:unit -- --auto-watch --no-single-run",
"eslint": "eslint index.ts src/**/*.ts",
"lint": "npm run eslint",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"pipelineSettings": {
"publishToCDN": true,
"publishToNPM": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackbaud/sky-addin-client.git"
},
"author": "Blackbaud, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackbaudsky-addin-client/issues"
},
"homepage": "https://github.com/blackbaud/sky-addin-client#readme",
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@types/core-js": "2.5.5",
"@types/jasmine": "4.3.0",
"@types/jasmine-ajax": "3.3.3",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"core-js": "3.26.1",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"fs-extra": "8.0.1",
"istanbul": "0.4.5",
"jasmine": "4.5.0",
"jasmine-ajax": "4.0.0",
"karma": "6.4.1",
"karma-browserstack-launcher": "1.5.1",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-firefox-launcher": "1.1.0",
"karma-jasmine": "5.1.0",
"karma-mocha-reporter": "2.2.5",
"karma-sourcemap-loader": "0.3.8",
"karma-webpack": "5.0.0",
"prettier": "2.7.1",
"rimraf": "2.6.3",
"ts-loader": "9.4.1",
"typescript": "4.9.3",
"webpack": "5.90.3",
"webpack-cli": "4.10.0"
}
}