-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.32 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
{
"name": "cloudbees-openfeature-provider-node",
"version": "1.0.1",
"description": "An OpenFeature provider for CloudBees Feature Management",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"author": "Rollout.io <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://www.cloudbees.com/products/feature-management",
"repository": {
"type": "git",
"url": "https://github.com/rollout/cloudbees-openfeature-provider-node"
},
"bugs": {
"url": "https://github.com/rollout/cloudbees-openfeature-provider-node/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=14"
},
"keywords": [
"openfeature",
"feature-flag",
"feature-flags",
"rollout",
"rox",
"flags",
"flag",
"configuration",
"remote-control",
"rollout.io",
"cloudbees"
],
"scripts": {
"test": "jest --verbose --forceExit",
"lint": "eslint ./",
"clean": "rm -fr ./dist",
"type": "tsc --project tsconfig.json --declaration --emitDeclarationOnly",
"build:esm": "esbuild ./src/index.ts --bundle --sourcemap --target=es2020 --platform=node --format=esm --outfile=./dist/esm/index.js --analyze",
"build:cjs": "esbuild ./src/index.ts --bundle --sourcemap --target=es2020 --platform=node --format=cjs --outfile=./dist/cjs/index.js --analyze",
"build": "npm run clean && npm run type && npm run build:esm && npm run build:cjs",
"postbuild": "cp ./package.esm.json ./dist/esm/package.json",
"current-version": "echo $npm_package_version"
},
"ROX": {
"api_version": "1.9.0"
},
"files": [
"dist/"
],
"dependencies": {
"rox-node": "^6.0.1"
},
"peerDependencies": {
"@openfeature/js-sdk": "^1.0.0"
},
"devDependencies": {
"@openfeature/js-sdk": "^1.0.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.7.16",
"@types/rox-node": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"esbuild": "^0.15.1",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-check-file": "^1.2.1",
"eslint-plugin-jest": "^27.0.2",
"jest": "^28.1.0",
"jest-junit": "^14.0.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.8.3"
}
}