forked from Unleash/unleash-client-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 2.87 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "unleash-client",
"version": "3.14.1",
"description": "Unleash Client for Node",
"license": "Apache-2.0",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"postversion": "./scripts/update-build-details.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix && prettier --write '{src,examples}/**/*.ts'",
"prebuild": "del-cli --force lib",
"build": "tsc -p .",
"prepare": "yarn run build",
"test": "cross-env NODE_ENV=test yarn run build && ava",
"coverage": "nyc --reporter=lcov yarn test"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:Unleash/unleash-client-node.git"
},
"keywords": [
"unleash",
"client",
"feature toggle"
],
"bugs": {
"url": "https://github.com/Unleash/unleash-client-node/issues"
},
"homepage": "https://github.com/Unleash/unleash-client-node",
"dependencies": {
"ip": "^1.1.5",
"make-fetch-happen": "^9.0.4",
"murmurhash3js": "^3.0.1",
"semver": "^7.3.5"
},
"engines": {
"node": ">=10",
"npm": ">=4.0.0"
},
"files": [
"lib",
"examples"
],
"devDependencies": {
"@ava/babel": "2.0.0",
"@types/ip": "1.1.0",
"@types/make-fetch-happen": "9.0.2",
"@types/murmurhash3js": "3.0.2",
"@types/node": "14.18.16",
"@types/semver": "7.3.9",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@unleash/client-specification": "4.2.0",
"ava": "3.15.0",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"del-cli": "4.0.1",
"eslint": "8.7.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"esm": "3.2.25",
"husky": "7.0.4",
"lint-staged": "12.4.1",
"mkdirp": "1.0.4",
"nock": "13.2.4",
"nyc": "15.1.0",
"prettier": "2.5.1",
"redis": "4.0.6",
"sinon": "13.0.2",
"typescript": "4.5.5"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"json-schema": "^0.4.0"
},
"nyc": {
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 80,
"include": [
"lib/**.js",
"lib/**/*.js"
],
"all": true,
"exclude-after-remap": false
},
"prettier": {
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 2
}
}
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{ts,md,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"ava": {
"babel": true,
"require": [
"esm"
],
"files": [
"test/**/*",
"!test/*_custom_strategy.js",
"!test/fake_repo.js"
]
}
}