-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
79 lines (79 loc) · 2.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "flagsmith-nodejs",
"version": "5.1.0",
"description": "Flagsmith lets you manage features flags and remote config across web, mobile and server side applications. Deliver true Continuous Integration. Get builds out faster. Control who has access to new features.",
"main": "./build/cjs/index.js",
"type": "module",
"engines": {
"node": ">=18"
},
"exports": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Flagsmith/flagsmith-nodejs-client"
},
"keywords": [
"nodejs",
"flagsmith",
"feature flags",
"feature toggles",
"remote configuration",
"continuous deployment"
],
"bugs": {
"url": "https://github.com/Flagsmith/flagsmith-nodejs-client/issues"
},
"homepage": "http://flagsmith.com/",
"author": "Flagsmith",
"contributors": [
{
"name": "Tom Stuart",
"email": "tom@solidstategroup.com"
},
{
"name": "Kyle Johnson",
"email": "kyle.johnson@flagsmith.com",
"url": "https://www.npmjs.com/~kyle-ssg"
},
{
"name": "Luke Fanning",
"email": "luke@solidstategroup.com"
},
{
"name": "Matt Elwell",
"email": "matthew.elwell@solidstategroup.com"
}
],
"license": "MIT",
"scripts": {
"lint": "prettier --write .",
"test": "vitest --coverage --run",
"test:watch": "vitest",
"test:debug": "vitest --inspect-brk --no-file-parallelism --coverage",
"prebuild": "rm -rf ./build",
"build": "tsc -b tsconfig.cjs.json tsconfig.esm.json && echo '{\"type\": \"commonjs\"}'> build/cjs/package.json",
"deploy": "npm i && npm run build && npm publish",
"deploy:beta": "npm i && npm run build && npm publish --tag beta",
"prepare": "husky install"
},
"dependencies": {
"pino": "^8.8.0",
"semver": "^7.3.7",
"undici-types": "^6.19.8"
},
"devDependencies": {
"@types/node": "^20.16.10",
"@types/semver": "^7.3.9",
"@types/uuid": "^8.3.4",
"@vitest/coverage-v8": "^2.1.2",
"esbuild": "^0.14.25",
"husky": "^7.0.4",
"prettier": "^2.2.1",
"typescript": "^4.9.5",
"undici": "^6.19.8",
"vitest": "^2.1.2"
}
}