-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "@splitsoftware/vercel-integration-utils",
"version": "1.2.0",
"description": "Split SDK wrapper to integrate with Vercel Edge Config",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types",
"files": [
"README.md",
"LICENSE",
"CHANGES.txt",
"dist"
],
"scripts": {
"build": "rimraf dist && tsc --declaration --declarationDir dist/types && tsc -m es6 --outDir dist/esm --declaration false",
"test": "jest",
"all": "npm run build && npm run test",
"publish:rc": "npm run test && npm run build && npm publish --tag rc",
"publish:stable": "npm run test && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splitio/vercel-integration-utils.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/splitio/vercel-integration-utils/issues"
},
"homepage": "https://github.com/splitio/vercel-integration-utils#readme",
"peerDependencies": {
"@vercel/edge-config": ">=0.1.0 <2.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@vercel/edge-config": "^0.2.1",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.2"
},
"sideEffects": false
}