forked from twoflags-io/twoflags-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.53 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.53 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "twoflags-api",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build:api": "rollup -c",
"build:resolver": "rollup -c --config rollup-resolver.config.js",
"lint": "standardx --verbose 'src/**/*.ts' | snazzy",
"fix": "yarn format && yarn lint",
"format": "prettier --write 'src/**/*.ts' > /dev/null",
"test": "jest --coverage",
"publish:api": "wrangler publish --env api",
"publish:resolver": "wrangler publish --env resolver"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cloudflare/workers-types": "^1.0.6",
"@cloudflare/wrangler": "^1.6.0",
"@types/jest": "^24.0.24",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"async": "^1.5.0",
"babel-eslint": "^10.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^2.0.4",
"prettier-standard": "^16.1.0",
"rollup": "^1.27.13",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"snazzy": "^8.0.0",
"standard": "^14.3.3",
"standardx": "^5.0.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin",
"eslint-plugin-jest",
"eslint-plugin-prettier"
],
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"afterEach",
"$Keys",
"Class",
"jest",
"fixture",
"$Shape",
"MouseEvent",
"FormData",
"addEventListener",
"ENVIRONMENTS",
"NAMESPACES",
"FLAGS",
"APIKEYS",
"APIKEY",
"SEGMENTS",
"SELECTORS",
"ACCOUNTS",
"VALUES",
"RESOLVER"
]
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.0.7",
"eslint-plugin-jest-dom": "^2.0.1",
"is-my-json-valid": "^2.20.0",
"jsonwebtoken": "^8.5.1",
"limiter": "^1.1.5",
"lru-memoizer": "^2.0.1",
"outplan": "^0.1.1",
"planout": "^4.0.0",
"weighted": "^0.3.0"
}
}