forked from akhenry/openmct-yamcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.64 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
{
"name": "openmct-yamcs",
"version": "3.3.0-Pixxel-1.0.0",
"description": "An adapter for connecting Open MCT with YAMCS",
"type": "module",
"main": "dist/openmct-yamcs.js",
"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.js",
"build:example": "npm install openmct@unstable --no-save",
"build:example:master": "npm install nasa/openmct#master --no-save",
"postbuild:example": "node check-optional-dependencies.js",
"start": "npx webpack serve --config ./.webpack/webpack.dev.js",
"start:docker": "npx webpack serve --config ./.webpack/webpack.dev.docker.js",
"start:coverage": "npx webpack serve --config ./.webpack/webpack.coverage.js",
"prepare": "npm run build:dist",
"test:getopensource": "sh ./tests/git-opensource-tests.sh",
"test:e2e:smoke": "npx playwright test --config=./tests/e2e/playwright-quickstart.config.js --project=chromium quickstartSmoke",
"test:e2e:quickstart": "npx playwright test --config=./tests/e2e/playwright-quickstart.config.js --project=chromium tests/e2e/yamcs/",
"test:e2e:quickstart:local": "npx playwright test --config=./tests/e2e/playwright-quickstart.config.js --project=local-chrome tests/e2e/yamcs/",
"test:e2e:watch": "npx playwright test --ui --config=./tests/e2e/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": ">=16.19.1"
},
"optionalDependencies": {
"openmct": "github:nasa/openmct#master"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/eslint-parser": "7.19.1",
"@deploysentinel/playwright": "0.3.4",
"@playwright/test": "1.36.2",
"babel-loader": "9.1.0",
"babel-plugin-istanbul": "6.1.1",
"dotenv": "^16.4.0",
"dotenv-webpack": "^8.0.1",
"eslint": "8.38.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.0",
"wait-on": "7.0.1",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0"
},
"dependencies": {
"fs": "^0.0.1-security",
"npm": "^9.9.0"
}
}