forked from blackbaud/sky-addin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.4 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
{
"name": "@blackbaud/sky-addin-client",
"version": "1.1.2",
"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",
"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": "npm run uglifyjs -- dist/bundles/sky-addin-client.umd.js -m -o dist/bundles/sky-addin-client.umd.min.js",
"build": "npm run rimraf dist && npm run tsc && npm run 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'",
"rimraf": "rimraf",
"tsc": "tsc",
"uglifyjs": "uglifyjs",
"webpack": "webpack"
},
"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": {
"@types/core-js": "2.5.3",
"@types/jasmine": "3.5.10",
"@types/jasmine-ajax": "3.3.0",
"@types/webpack": "4.41.10",
"core-js": "3.6.4",
"fs-extra": "9.0.0",
"istanbul": "0.4.5",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine": "3.5.0",
"jasmine-ajax": "4.0.0",
"karma": "4.4.1",
"karma-browserstack-launcher": "1.5.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "1.1.2",
"karma-firefox-launcher": "1.3.0",
"karma-jasmine": "3.1.1",
"karma-mocha-reporter": "2.2.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "4.0.2",
"raw-loader": "4.0.0",
"remap-istanbul": "0.13.0",
"rimraf": "3.0.2",
"source-map-inline-loader": "github:blackbaud-bobbyearl/source-map-inline-loader",
"ts-loader": "6.2.2",
"tslint": "5.18.0",
"tslint-loader": "3.5.4",
"typescript": "3.8.3",
"uglify-js": "3.8.1",
"webpack": "4.42.1",
"webpack-cli": "3.3.11"
}
}