forked from Flagsmith/flagsmith-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
{
"name": "flagsmith-nodejs",
"version": "2.2.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/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": "[email protected]"
},
{
"name": "Kyle Johnson",
"email": "[email protected]",
"url": "https://www.npmjs.com/~kyle-ssg"
},
{
"name": "Luke Fanning",
"email": "[email protected]"
},
{
"name": "Matt Elwell",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"lint": "prettier --write .",
"test": "jest --coverage --coverageReporters='text'",
"test:watch": "jest --coverage --watch --coverageReporters='text'",
"test:debug": "node --inspect-brk node_modules/.bin/jest --coverage --watch --coverageReporters='text'",
"build": "tsc",
"deploy": "npm i && npm run build && npm publish",
"deploy:beta": "npm i && npm run build && npm publish --tag beta",
"prepare": "husky install"
},
"dependencies": {
"big-integer": "^1.6.51",
"md5": "^2.3.0",
"node-fetch": "^2.1.2",
"semver": "^7.3.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/md5": "^2.3.2",
"@types/node-fetch": "^2.6.1",
"@types/semver": "^7.3.9",
"@types/uuid": "^8.3.4",
"esbuild": "^0.14.25",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.2.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}