-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 2.76 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
{
"name": "launchdarkly-electron-client-sdk",
"version": "1.7.0",
"description": "LaunchDarkly SDK for Electron",
"author": "LaunchDarkly <team@launchdarkly.com>",
"license": "Apache-2.0",
"keywords": [
"launchdarkly",
"analytics",
"client"
],
"types": "./typings.d.ts",
"main": "src/index.js",
"scripts": {
"lint": "eslint --format 'node_modules/eslint-formatter-pretty' --ignore-path .eslintignore",
"lint:all": "eslint --format 'node_modules/eslint-formatter-pretty' --ignore-path .eslintignore src",
"format": "npm run format:md && npm run format:js",
"format:md": "prettier --parser markdown --ignore-path ../../.prettierignore --write '*.md'",
"format:js": "prettier --ignore-path ../../.prettierignore --write 'src/**/*.js'",
"format:test": "npm run format:test:md && npm run format:test:js",
"format:test:md": "prettier --parser markdown --ignore-path ../../.prettierignore --list-different '*.md'",
"format:test:js": "prettier --ignore-path ../../.prettierignore --list-different 'src/**/*.js'",
"test": "NODE_ENV=test jest --reporters=default",
"test:junit": "NODE_ENV=test jest --reporters=default --reporters=jest-junit",
"integration-test": "NODE_ENV=test jest --config src/__tests__/rendererIntegrationTests/jest.config.js src/__tests__/rendererIntegrationTests/renderer-integrationtest.js",
"integration-test:junit": "NODE_ENV=test jest --config src/__tests__/rendererIntegrationTests/jest.config.js src/__tests__/rendererIntegrationTests/renderer-integrationtest.js --testResultsProcessor jest-junit",
"check-typescript": "node_modules/typescript/bin/tsc",
"clean": "rimraf dist/**"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@jest-runner/electron": "^3.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.7.1",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"electron": "^7.2.4",
"eslint": "^4.19.1",
"eslint-config-prettier": "2.9.0",
"eslint-config-xo": "^0.20.1",
"eslint-formatter-pretty": "1.3.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^24.7.1",
"jest-junit": "^6.3.0",
"jsdom": "^11.11.0",
"launchdarkly-js-test-helpers": "1.2.1",
"prettier": "1.11.1",
"readline-sync": "^1.4.9",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"semver-compare": "^1.0.0",
"spectron": "^9.0.0",
"typescript": "^3.9.7"
},
"dependencies": {
"electron-json-storage": "^4.1",
"launchdarkly-eventsource": "1.4.4",
"launchdarkly-js-client-sdk": "2.24.2",
"launchdarkly-js-sdk-common": "3.8.2",
"original": "^1.0.0",
"winston": "^3.2.1"
},
"repository": {
"type": "git",
"url": "git://github.com/launchdarkly/electron-client-sdk.git"
}
}