-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 2.75 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
{
"name": "openmct-yamcs",
"version": "4.0.0-next",
"description": "An adapter for connecting Open MCT with YAMCS",
"main": "dist/openmct-yamcs.js",
"module": "dist/openmct-yamcs.js",
"exports": {
".": {
"import": "./dist/openmct-yamcs.js",
"require": "./dist/openmct-yamcs.js"
}
},
"workspaces": [
"tests/e2e/opensource"
],
"scripts": {
"clean": "rm -rf ./dist ./node_modules ./package-lock.json ./coverage ./test-results ./tests/html-test-results ./tests/e2e/test-results ./.nyc_output ./tests/e2e/opensource",
"test": "npm run test:getopensource && npm run test:e2e:smoke",
"lint": "eslint src example",
"lint:fix": "eslint src example --fix",
"build:dist": "webpack --config ./.webpack/webpack.prod.mjs",
"build:example": "npm install openmct@unstable --no-save",
"build:example:master": "npm install nasa/openmct#master --no-save",
"build:example:currentbranch": "npm install nasa/openmct#$(git rev-parse --abbrev-ref HEAD) --no-save --verbose",
"postbuild:example": "node check-optional-dependencies.mjs",
"start": "npx webpack serve --config ./.webpack/webpack.dev.mjs",
"start:coverage": "npx webpack serve --config ./.webpack/webpack.coverage.mjs",
"prepare": "npm run build:dist",
"test:getopensource": "sh ./tests/git-opensource-tests.sh",
"posttest:getopensource": "npm install",
"test:e2e:smoke": "npm test --workspace tests/e2e/opensource -- --config=../playwright-quickstart.config.js --project=chromium quickstartSmoke",
"test:e2e:quickstart": "npm test --workspace tests/e2e/opensource -- --config=../playwright-quickstart.config.js --project=chromium tests/e2e/yamcs/",
"test:e2e:quickstart:local": "npm test --workspace tests/e2e/opensource -- --config=../playwright-quickstart.config.js --project=local-chrome tests/e2e/yamcs/",
"test:e2e:watch": "npm test --workspace tests/e2e/opensource -- --ui --config=../playwright-quickstart.config.js",
"wait-for-yamcs": "wait-on http-get://localhost:8090/ -v"
},
"keywords": [
"openmct",
"yamcs"
],
"author": "National Aeronautics and Space Administration",
"license": "Apache-2.0",
"engines": {
"node": ">=18.14.2 <22"
},
"optionalDependencies": {
"openmct": ">= 3.9.9"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/eslint-parser": "7.23.3",
"babel-loader": "9.1.0",
"babel-plugin-istanbul": "6.1.1",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eventemitter3": "4.0.7",
"file-saver": "2.0.5",
"semver": "7.5.2",
"sinon": "14.0.0",
"source-map-loader": "4.0.1",
"uuid": "9.0.1",
"wait-on": "7.0.1",
"webpack": "5.90.3",
"webpack-cli": "5.1.1",
"webpack-dev-server": "5.0.2",
"webpack-merge": "5.10.0"
}
}