-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
106 lines (106 loc) · 3.22 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
{
"name": "launchdarkly-nodeutils",
"version": "0.0.0-semantically-released",
"description": "NodeJs utils to manage LaunchDarkly SaaS Feature Flags via API",
"main": "index.js",
"bin": {
"ldutils": "./ldutils"
},
"scripts": {
"build": "yarn lint && rimraf dist/ && babel ./src --out-dir dist/src --copy-files && babel ./test --out-dir dist/test --copy-files && babel ./*.js --out-dir dist/ --copy-files && cp openapi.json dist/",
"commit": "./node_modules/.bin/git-cz",
"lint": "prettier --write ./src/** *.js ldutils && node ./node_modules/.bin/eslint ./src ./test --fix --ext=.js --ignore-pattern node_modules/ --ignore-pattern coverage/ --quiet",
"test": "yarn build && cross-env NODE_ENV=test nyc ./node_modules/.bin/mocha --timeout 10000 --require @babel/register --require @babel/polyfill './dist/test/**/*.spec.js' && yarn jsdoc2markdown",
"semantic-release": "semantic-release",
"jsdoc2markdown": "node ./renderApiDocs.js"
},
"author": "zotoio <[email protected]> (https://zoto.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zotoio/launchdarkly-nodeutils.git"
},
"keywords": [
"launchdarkly",
"featureflags"
],
"bugs": {
"url": "https://github.com/zotoio/launchdarkly-nodeutils/issues"
},
"homepage": "https://github.com/zotoio/launchdarkly-nodeutils#readme",
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@babel/runtime": "^7.7.4",
"app-root-path": "^3.0.0",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"commander": "^6.1.0",
"dotenv": "^8.2.0",
"fast-json-patch": "^3.1.1",
"format-json": "^1.0.3",
"globule": "^1.2.1",
"https-proxy-agent": "^5.0.0",
"js-yaml": "^3.13.1",
"json-diff": "^0.5.4",
"json-format": "^1.0.1",
"lodash": "^4.17.21",
"node-fetch": "2.6.7",
"webpack": "^5.76.0",
"swagger-client": "^3.27.5"
},
"engines": {
"node": ">=10.0.0"
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-async-to-generator": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^7.9.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "^3.1.1",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^8.1.3",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"prettier": "2.1.1",
"rimraf": "^3.0.0",
"semantic-release": "^17.4.7",
"sinon": "^9.0.3",
"supertest": "^4.0.2"
},
"resolutions": {
"lodash": "4.17.21",
"browserslist": "^4.21.4",
"fast-json-patch": "3.1.1",
"minimatch": "3.0.5",
"minimist": "1.2.6",
"moment": "2.29.4"
}
}