forked from Unleash/unleash-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.48 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.48 KB
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
{
"name": "unleash-client",
"version": "3.4.0",
"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'",
"build": "tsc -p .",
"prepare": "npm run build",
"test": "cross-env NODE_ENV=test npm run build && ava",
"coverage": "nyc --check-coverage=true npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com: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",
"murmurhash3js": "^3.0.1",
"request": "^2.88.2"
},
"engines": {
"node": ">=10",
"npm": ">=4.0.0"
},
"files": [
"lib",
"examples"
],
"devDependencies": {
"@types/ip": "^1.1.0",
"@types/murmurhash3js": "^3.0.2",
"@types/nock": "^11.1.0",
"@types/node": "^14.0.1",
"@types/request": "^2.48.4",
"@unleash/client-specification": "^3.3.0",
"ava": "^2.2.0",
"coveralls": "^3.0.3",
"cross-env": "^7.0.0",
"eslint": "^6.1.0",
"eslint-config-finn": "^3.0.0",
"eslint-config-finn-prettier": "^3.0.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.3",
"mkdirp": "^0.5.1",
"nock": "^12.0.0",
"nyc": "^15.0.0",
"prettier": "^1.17.1",
"sinon": "^9.0.0",
"typescript": "^3.8.2"
},
"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": 4,
"trailingComma": "all",
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 2
}
}
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{ts,md,json}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"ava": {
"helpers": [
"**/helpers/**/*",
"**/fixtures/**/*"
]
}
}