-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.67 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.67 KB
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
{
"name": "@splitsoftware/openfeature-web-split-provider",
"version": "1.1.0",
"description": "Split OpenFeature Web Provider",
"files": [
"README.md",
"CONTRIBUTORS-GUIDE.md",
"LICENSE",
"CHANGES.txt",
"lib",
"types",
"es",
"src"
],
"repository": "splitio/split-openfeature-provider-web-js",
"homepage": "https://github.com/splitio/split-openfeature-provider-web-js#readme",
"bugs": "https://github.com/splitio/split-openfeature-provider-web-js/issues",
"license": "Apache-2.0",
"author": "Josh Sirota <josh.sirota@split.io>",
"contributors": [
"Nicolas Zelaya <nicolas.zelaya@harness.io> (https://github.com/NicoZelaya)",
"Emiliano Sanchez <emiliano.sanchez@harness.io> (https://github.com/EmilianoSanchez)",
"Emmanuel Zamora <emmanuel.zamora@harness.io> (https://github.com/ZamoraEmmanuel)",
"SDK Team <sdks@harness.io>"
],
"main": "lib/index.js",
"module": "es/index.js",
"browser": "lib/index.js",
"types": "types/index.d.ts",
"engines": {
"npm": ">=3"
},
"peerDependencies": {
"@openfeature/web-sdk": "^1.6.1",
"@splitsoftware/splitio-browserjs": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@openfeature/web-sdk": "^1.6.1",
"@splitsoftware/splitio-browserjs": "^1.7.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^9.35.0",
"eslint-plugin-jest": "^28.14.0",
"globals": "^16.4.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jiti": "^2.5.1",
"replace": "^1.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.4.1",
"typescript": "^4.9.5",
"typescript-eslint": "^8.43.0"
},
"scripts": {
"build-esm": "rimraf es && tsc -outDir es",
"postbuild-esm": "cross-env NODE_ENV=es node scripts/copy.packages.json.js && ./scripts/build_esm_replace_imports.sh",
"build-cjs": "rimraf lib && tsc -outDir lib -m CommonJS",
"postbuild-cjs": "cross-env NODE_ENV=cjs node scripts/copy.packages.json.js && ./scripts/build_cjs_replace_imports.sh",
"check": "npm run check:lint",
"check:lint": "eslint src",
"build": "rimraf lib es && npm run build-cjs && npm run build-esm",
"pretest-ts-decls": "npm run build-esm && npm run build-cjs && npm link",
"test-ts-decls": "./scripts/ts-tests.sh",
"posttest-ts-decls": "npm unlink && npm install",
"test": "jest --testPathIgnorePatterns=node_modules/ -c jest.config.js",
"publish:rc": "npm run check && npm run build && npm publish --tag canary",
"publish:stable": "npm run check && npm run build && npm publish"
},
"greenkeeper": {
"ignore": [
"karma",
"karma-tap",
"karma-webpack"
]
}
}