-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.93 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
{
"name": "@splitsoftware/splitio-sync-tools",
"version": "0.7.0",
"description": "Split JavaScript Sync Tools",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"files": [
"lib",
"types",
"src"
],
"types": "types/index.d.ts",
"keywords": [
"splitio",
"slim synchronizer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/splitio/javascript-sync-tools.git"
},
"homepage": "https://github.com/splitio/javascript-sync-tools#readme",
"bugs": "https://github.com/splitio/javascript-sync-tools/issues",
"author": "Split Software",
"contributors": [
{
"name": "Emiliano Sanchez",
"email": "[email protected]",
"url": "https://github.com/EmilianoSanchez"
},
{
"name": "Nico Zelaya",
"email": "[email protected]",
"url": "https://github.com/NicoZelaya"
}
],
"license": "Apache-2.0",
"scripts": {
"check": "npm run check:lint && npm run check:types",
"check:lint": "eslint src --ext .js,.ts",
"check:types": "tsc --noEmit",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "rimraf lib/esm && tsc -m es2015 --outDir lib/esm --importHelpers && scripts/build_esm_replace_imports.sh && replace @VERSION@ $npm_package_version lib/esm/settings/defaults.js",
"build:cjs": "rimraf lib/cjs && tsc -m CommonJS --outDir lib/cjs --importHelpers && scripts/build_cjs_replace_imports.sh && replace @VERSION@ $npm_package_version lib/cjs/settings/defaults.js",
"json-server": "node ./e2e/server/server.js",
"test:unit": "jest src/",
"test:e2e": "start-server-and-test 'json-server' 3000 './scripts/check_redis.sh && jest e2e/ --runInBand'",
"test": "npm run test:unit && npm run test:e2e",
"all": "npm run check && npm run build && npm run test",
"publish:rc": "npm publish --tag rc",
"publish:stable": "npm publish",
"prepublishOnly": "npm run check && npm run test && npm run build"
},
"dependencies": {
"@splitsoftware/splitio-commons": "1.16.0",
"dotenv": "^9.0.1",
"node-fetch": "^2.6.7",
"yargs": "^17.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"@splitsoftware/splitio": "10.25.1",
"@types/ioredis": "^4.28.0",
"@types/jest": "^27.0.0",
"@types/node": "^15.0.1",
"@types/node-fetch": "^2.5.10",
"@types/object-assign": "^4.0.30",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.18.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^33.1.0",
"husky": "^6.0.0",
"ioredis": "^4.28.0",
"jest": "^27.2.4",
"json-server": "^0.17.3",
"replace": "^1.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.53.3",
"start-server-and-test": "^2.0.3",
"ts-jest": "^27.0.5",
"typescript": "4.4.4"
}
}