-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "rox-ssr-multi-entrypoints",
"version": "0.1.18",
"description": "Rollout.io SDK with support for multiple entrypoints",
"author": "Guillaume Guirado",
"license": "MIT",
"homepage": "https://github.com/g-guirado/rox-ssr-multi-entrypoints",
"repository": {
"type": "git",
"url": "https://github.com/g-guirado/rox-ssr-multi-entrypoints.git"
},
"keywords": [
"feature-flag",
"feature-flags",
"remote-configuration",
"remote-variable",
"rollout",
"rox",
"ssr",
"flags",
"flag",
"configuration",
"remote-control",
"rollout.io"
],
"scripts": {
"clean:dist": "rm -rf dist/*",
"build": "yarn build-es5 && yarn build-es6",
"build-es5": "tsc --target es5 --outDir dist/es5 --removeComments --lib 'es2015,dom'",
"build-es6": "tsc --lib es6,dom",
"lint": "eslint . --ext .js,.ts"
},
"main": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"browser": "dist/es5/index.js",
"dependencies": {
"rox-ssr": "^4.9.16"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.32.0",
"@typescript-eslint/parser": "^2.32.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"json-schema": "^0.4.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=10"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map"
]
}