-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 914 Bytes
/
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
{
"name": "split-cloudflare-workers-template",
"version": "1.2.0",
"description": "Cloudflare workers template with Durable Objects and Split Javascript SDK",
"module": "./dist/index.mjs",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,ts,md}'"
},
"author": "Emiliano Sanchez <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@cloudflare/workers-types": "^3.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-typescript": "^8.2.1",
"prettier": "^1.19.1",
"rollup": "^2.36.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.2.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@splitsoftware/splitio-browserjs": "0.13.0",
"@splitsoftware/splitio-sync-tools": "0.5.0"
}
}