-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
52 lines (52 loc) · 2.04 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
{
"name": "@launchdarkly/integration-framework",
"version": "1.0.0",
"description": "Feature flags not only provide you control over your deployment and rollout, but also provides context to other related systems -- giving your team visibility into how your services react due to changes to flags. This repository contains LaunchDarkly integrations built by our community. Most of these integrations consume events from LaunchDarkly in order to provide their users more context.",
"types": "manifest.schema.d.ts",
"scripts": {
"test": "jest",
"test:ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit",
"build": "node bundleSchemas.js && prettier --write ./*.schema.json && json2ts schemas/base.json > manifest.schema.d.ts",
"prettier:check": "prettier --list-different \"./**/*.{js,json}\"",
"prettier:write": "prettier --write \"./**/*.{js,json}\"",
"preview": "node preview.js",
"curl": "node preview.js --curl",
"dev:server": "npx nodemon",
"build:server": "rimraf ./dist && tsc",
"start:server": "npm run build:server && node dist/server/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/launchdarkly/integration-framework.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/launchdarkly/integration-framework/issues"
},
"homepage": "https://github.com/launchdarkly/integration-framework#readme",
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^8.0.0",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"ajv": "^6.10.2",
"handlebars": "^4.7.7",
"jest": "^29.7.0",
"jest-expect-message": "1.0.2",
"jest-junit": "^13.0.0",
"json-schema-to-typescript": "^10.0.0",
"jsonpointer": "^5.0.1",
"lodash": "^4.17.21",
"nodemon": "^2.0.22",
"plop": "^3.1.1",
"prettier": "^2.0.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"dateformat": "^4.5.1",
"express": "^4.21.1",
"url-parse": "^1.5.9"
}
}