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 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.56 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
{
"name": "flipr-yaml",
"version": "2.0.1",
"description": "Flipr source to retrieve config from yaml files",
"main": "lib/flipr-yaml.js",
"scripts": {
"lint": "eslint --fix lib/",
"test": "npm run lint && npm run unit",
"unit": "jest --coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:godaddy/node-flipr-yaml.git"
},
"keywords": [
"flipr",
"source",
"yaml",
"feature",
"flags",
"configuration",
"config",
"dynamic",
"flip",
"flipping"
],
"author": {
"name": "Grant Shively",
"email": "[email protected]"
},
"homepage": "https://github.com/godaddy/node-flipr-yaml",
"bugs": "https://github.com/godaddy/node-flipr-yaml/issues",
"license": "MIT",
"engines": {
"node": ">=8.3.0"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.2"
},
"dependencies": {
"flipr-validation": "^2.1.0",
"globby": "^11.0.1",
"js-yaml": "^3.14.0",
"p-memoize": "^4.0.1"
},
"eslintConfig": {
"env": {
"jasmine": true,
"jest": true
},
"extends": "airbnb-base",
"rules": {
"consistent-return": 0
}
},
"jest": {
"resetMocks": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"roots": [
"<rootDir>/lib/"
],
"testEnvironment": "node"
}
}