-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.08 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
{
"packageManager": "yarn@4.11.0",
"name": "@reforge-com/javascript",
"version": "0.0.5",
"description": "Feature Flags & Dynamic Configuration as a Service",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Jeffrey Chupp",
"license": "ISC",
"devDependencies": {
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"esbuild": "^0.25.11",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"jest": "^29.0.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.2",
"typescript": "^5.1.6"
},
"scripts": {
"build": "rm -rf dist/ && tsup",
"dev": "tsup --watch",
"bundle": "esbuild --minify --target=esnext --bundle --outfile=dist/reforge.bundle.js --global-name=window.reforgeNamespace dist/index.cjs && echo 'window.reforge = window.reforgeNamespace.reforge' >> dist/reforge.bundle.js",
"lint": "eslint --ext .ts,.tsx src/",
"lint:fix": "eslint --fix --ext .ts,.tsx src/",
"prettier": "prettier . -l",
"prettier:fix": "prettier --write .",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/ReforgeHQ/sdk-javascript.git"
},
"keywords": [
"feature-flags",
"config"
],
"bugs": {
"url": "https://github.com/ReforgeHQ/sdk-javascript/issues"
},
"homepage": "https://github.com/ReforgeHQ/sdk-javascript#readme",
"dependencies": {
"uuid": "^9.0.1"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
}
}