This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 1.84 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
{
"name": "flipr",
"version": "2.2.1",
"description": "Feature flipping and configuration using yaml files, etcd, or other flipr sources",
"main": "lib/flipr.js",
"scripts": {
"benchmark": "node ./benchmark/percent.js && node ./benchmark/list.js && node ./benchmark/equal.js",
"lint": "eslint --fix lib/",
"test": "npm run lint && npm run unit",
"unit": "jest --coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:godaddy/node-flipr.git"
},
"keywords": [
"feature",
"flags",
"configuration",
"config",
"dynamic",
"flip",
"flipping",
"ab"
],
"author": {
"name": "Grant Shively",
"email": "[email protected]"
},
"homepage": "https://github.com/godaddy/node-flipr",
"bugs": "https://github.com/godaddy/node-flipr/issues",
"license": "MIT",
"engines": {
"node": ">=8.3.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.2"
},
"dependencies": {
"lodash.includes": "^4.3.0",
"lodash.isboolean": "^3.0.3",
"lodash.isfunction": "^3.0.9",
"lodash.isnumber": "^3.0.3",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"object-path": "^0.11.5"
},
"eslintConfig": {
"env": {
"jasmine": true,
"jest": true
},
"extends": "airbnb-base",
"rules": {
"consistent-return": 0,
"no-underscore-dangle": 0
}
},
"jest": {
"resetMocks": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"roots": [
"<rootDir>/lib/",
"<rootDir>/test/"
],
"testEnvironment": "node"
}
}