-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.41 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
{
"name": "@splitsoftware/splitio-commons",
"version": "2.0.2",
"description": "Split JavaScript SDK common components",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types",
"files": [
"README.md",
"CONTRIBUTORS-GUIDE.md",
"LICENSE",
"CHANGES.txt",
"cjs",
"esm",
"src",
"types"
],
"scripts": {
"check": "npm run check:lint && npm run check:types",
"check:lint": "eslint src types --ext .js,.ts",
"check:types": "tsc --noEmit",
"build": "npm run build:cjs && npm run build:esm",
"build:esm": "rimraf esm && tsc -m es2015 --outDir esm",
"build:cjs": "rimraf cjs && tsc -m CommonJS --outDir cjs",
"test": "jest",
"test:coverage": "jest --coverage",
"all": "npm run check && npm run build && npm run test",
"publish:rc": "npm run check && npm run test && npm run build && npm publish --tag rc",
"publish:stable": "npm run check && npm run test && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splitio/javascript-commons.git"
},
"keywords": [
"splitio",
"sdk",
"javascript"
],
"author": "Emiliano Sanchez <emiliano.sanchez@split.io> (https://github.com/EmilianoSanchez)",
"contributors": [
"Nicolas Zelaya <nicolas.zelaya@split.io> (https://github.com/NicoZelaya)"
],
"license": "Apache-2.0",
"bugs": "https://github.com/splitio/javascript-commons/issues",
"homepage": "https://github.com/splitio/javascript-commons#readme",
"dependencies": {
"@types/ioredis": "^4.28.0",
"tslib": "^2.3.1"
},
"peerDependencies": {
"ioredis": "^4.28.0"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
}
},
"devDependencies": {
"@types/google.analytics": "0.0.40",
"@types/ioredis": "^4.28.0",
"@types/jest": "^27.0.0",
"@types/lodash": "^4.14.162",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"cross-env": "^7.0.2",
"eslint": "^8.48.0",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-tsdoc": "^0.3.0",
"fetch-mock": "^9.11.0",
"ioredis": "^4.28.0",
"jest": "^27.2.3",
"jest-localstorage-mock": "^2.4.3",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"redis-server": "1.2.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "4.4.4"
},
"sideEffects": false
}