securityos/node_modules/eel-wasm/package.json

59 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
{
"name": "eel-wasm",
"version": "0.0.15",
"main": "dist/src/index.js",
"license": "MIT",
"homepage": "https://github.com/captbaritone/eel-wasm",
"author": "Jordan Eldredge <jordan@jordaneldredge.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/captbaritone/eel-wasm.git"
},
"prettier": {
"trailingComma": "es5"
},
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"ci": "yarn test && yarn build",
"benchmark": "node tools/benchmark/performance.js perf",
"consistency": "node tools/benchmark/performance.js consistency",
"test-parse": "node tools/parseMilk.js --stats --summary --dir=./fixtures/mega",
"test-compile": "node tools/parseMilk.js --stats --summary --compile --dir=./fixtures/mega",
"build-parser": "node ./tools/buildParser.js > ./build/parser.js",
"build": "yarn build-parser && tsc && parcel build src/index.ts -o dist/index.bundle.js --experimental-scope-hoisting",
"clean": "rm -rf build/*",
"prepublishOnly": "yarn test && yarn clean && yarn build"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"babel-jest": "^25.3.0",
"jest": "^24.9.0",
"jison": "^0.4.18",
"milkdrop-eel-parser": "^0.0.4",
"milkdrop-preset-utils": "^0.1.0",
"parcel": "^1.12.4",
"prettier": "^1.19.1",
"print-diff": "^1.0.0",
"typescript": "^3.8.3",
"wabt": "^1.0.12",
"yargs": "^15.1.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"eel"
],
"testPathIgnorePatterns": [
"/node_modules/",
"dist"
]
}
}