-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.8 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
{
"name": "@splitsoftware/splitio-browserjs",
"version": "1.0.1",
"description": "Split SDK for JavaScript on Browser",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types",
"files": [
"README.md",
"CONTRIBUTORS-GUIDE.md",
"LICENSE",
"CHANGES.txt",
"cjs",
"esm",
"src",
"types",
"full"
],
"scripts": {
"check": "npm run check:lint && npm run check:types && npm run check:version",
"check:lint": "eslint types src --ext .js,.ts",
"check:types": "tsc --noEmit",
"check:version": "./scripts/check_version.sh",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd",
"build:esm": "rimraf esm && tsc -outDir esm && ./scripts/build_esm_replace_imports.sh",
"build:cjs": "rimraf cjs && tsc -outDir cjs -m CommonJS && ./scripts/build_cjs_replace_imports.sh",
"build:umd-visualizer": "rimraf umd && rollup --config rollup.visualizer.config.js",
"build:umd": "rimraf umd && rollup --config rollup.ci.config.js --branch=$BUILD_BRANCH",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest",
"test:e2e": "npm run test:e2e-logger && npm run test:e2e-offline && npm run test:e2e-online && npm run test:e2e-destroy && npm run test:e2e-errorCatching && npm run test:e2e-push && npm run test:e2e-consumer",
"test:e2e-logger": "karma start karma/e2e.logger.karma.conf.js",
"test:e2e-offline": "karma start karma/e2e.offline.karma.conf.js",
"test:e2e-online": "karma start karma/e2e.online.karma.conf.js",
"test:e2e-destroy": "karma start karma/e2e.destroy.karma.conf.js",
"test:e2e-errorCatching": "karma start karma/e2e.errorCatching.karma.conf.js",
"test:e2e-push": "karma start karma/e2e.push.karma.conf.js",
"test:e2e-consumer": "karma start karma/e2e.consumer.karma.conf.js",
"test-ts-decls": "tsc --build ts-tests",
"all": "npm run check && npm run build && npm run test-ts-decls && npm run test",
"publish:rc": "npm run check && npm run build && npm publish --tag rc",
"publish:stable": "npm run check && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splitio/javascript-browser-client.git"
},
"keywords": [
"splitio",
"browser",
"sdk",
"javascript"
],
"author": "Emiliano Sanchez <[email protected]> (https://github.com/EmilianoSanchez)",
"contributors": [
"Nicolas Zelaya <[email protected]> (https://github.com/NicoZelaya)"
],
"license": "Apache-2.0",
"bugs": "https://github.com/splitio/javascript-browser-client/issues",
"homepage": "https://github.com/splitio/javascript-browser-client#readme",
"dependencies": {
"@splitsoftware/splitio-commons": "2.0.0",
"tslib": "^2.3.1",
"unfetch": "^4.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-terser": "^0.4.0",
"@types/jest": "^27.0.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-tsdoc": "^0.3.0",
"fetch-mock": "^11.1.3",
"jest": "^27.2.3",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-rollup-preprocessor": "^7.0.8",
"karma-tap": "^4.2.0",
"puppeteer": "^3.3.0",
"replace": "^1.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-ts": "^3.2.0",
"rollup-plugin-visualizer": "^5.9.0",
"sinon": "^9.2.2",
"tape": "4.13.2",
"tape-catch": "1.0.6",
"ts-jest": "^27.0.5",
"typescript": "4.4.4"
},
"sideEffects": false
}