mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
Replace parsing and test libraries
* WIP * WIP * wip * WIP * Several fixes * Tests wip port to playwright * WIP * Fix more tests * Serialization tests fixed * Several fixes for tests * Input options types * Type adjustments * Fix object reference parser * Tests fixes * More tests fixes
This commit is contained in:
93
package.json
93
package.json
@@ -1,45 +1,48 @@
|
||||
{
|
||||
"name": "ueblueprint",
|
||||
"version": "1.0.0",
|
||||
"description": "UE's Blueprint visualisation library",
|
||||
"main": "ueblueprint.js",
|
||||
"scripts": {
|
||||
"build": "rollup --config && sass scss/export.scss:dist/css/ueb-style.css && sass scss/export.scss:dist/css/ueb-style.min.css --style=compressed",
|
||||
"test": "npm run build && export UEBLUEPRINT_TEST_SERVER_PORT=8181 && npx concurrently -k \"http-server -s -p $UEBLUEPRINT_TEST_SERVER_PORT\" \"npx cypress run --env UEBLUEPRINT_TEST_SERVER_PORT=8181\"",
|
||||
"cypress": "export UEBLUEPRINT_TEST_SERVER_PORT=8181 && npx concurrently -k \"http-server -c-1 -p $UEBLUEPRINT_TEST_SERVER_PORT\" \"npx cypress open --env UEBLUEPRINT_TEST_SERVER_PORT=8181\""
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/barsdeveloper/ueblueprint.git"
|
||||
},
|
||||
"keywords": [
|
||||
"unreal",
|
||||
"engine",
|
||||
"blueprint"
|
||||
],
|
||||
"author": "barsdeveloper",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/barsdeveloper/ueblueprint/issues"
|
||||
},
|
||||
"homepage": "https://github.com/barsdeveloper/ueblueprint#readme",
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-commonjs": "^24",
|
||||
"@rollup/plugin-node-resolve": "^15",
|
||||
"@rollup/plugin-terser": "^0",
|
||||
"@types/parsimmon": "^1",
|
||||
"concurrently": "^8",
|
||||
"cypress": "^12",
|
||||
"http-server": "^14.1.1",
|
||||
"minify-html-literals": "^1",
|
||||
"rollup": "^3||^2",
|
||||
"rollup-plugin-copy": "^3",
|
||||
"rollup-plugin-minify-html-literals": "^1",
|
||||
"sass": "^1",
|
||||
"terser": "^5"
|
||||
},
|
||||
"dependencies": {
|
||||
"lit": "^2",
|
||||
"parsimmon": "^1"
|
||||
}
|
||||
}
|
||||
{
|
||||
"name": "ueblueprint",
|
||||
"version": "1.0.0",
|
||||
"description": "UE's Blueprint visualisation library",
|
||||
"type": "module",
|
||||
"main": "dist/ueblueprint.js",
|
||||
"types": "types.js",
|
||||
"scripts": {
|
||||
"build": "rollup --config && sass scss/export.scss:dist/css/ueb-style.css && sass scss/export.scss:dist/css/ueb-style.min.css --style=compressed",
|
||||
"test": "npm run build && export UEBLUEPRINT_TEST_SERVER_PORT=8181 && npx concurrently -k \"http-server -s -p $UEBLUEPRINT_TEST_SERVER_PORT\" \"npx cypress run --env UEBLUEPRINT_TEST_SERVER_PORT=8181\"",
|
||||
"cypress": "npm run build && export UEBLUEPRINT_TEST_SERVER_PORT=8181 && npx playwright test --ui",
|
||||
"start": "npx http-server"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/barsdeveloper/ueblueprint.git"
|
||||
},
|
||||
"keywords": [
|
||||
"unreal",
|
||||
"engine",
|
||||
"blueprint"
|
||||
],
|
||||
"author": "barsdeveloper",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/barsdeveloper/ueblueprint/issues"
|
||||
},
|
||||
"homepage": "https://github.com/barsdeveloper/ueblueprint#readme",
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.40.1",
|
||||
"@rollup/plugin-commonjs": "^24",
|
||||
"@rollup/plugin-node-resolve": "^15",
|
||||
"@rollup/plugin-terser": "^0",
|
||||
"concurrently": "^8",
|
||||
"cypress": "^12",
|
||||
"http-server": "^14",
|
||||
"minify-html-literals": "^1",
|
||||
"rollup": "^3||^2",
|
||||
"rollup-plugin-copy": "^3",
|
||||
"rollup-plugin-minify-html-literals": "^1",
|
||||
"sass": "^1",
|
||||
"terser": "^5"
|
||||
},
|
||||
"dependencies": {
|
||||
"lit": "^2",
|
||||
"parsernostrum": "^1"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user