Files
ueblueprint/package.json
2023-05-22 10:47:56 +02:00

46 lines
1.6 KiB
JSON
Executable File

{
"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"
}
}