Files
yoga/javascript/package.json

37 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "yoga-layout",
"version": "1.9.3",
"description": "Yoga is a cross-platform layout engine enabling maximum collaboration within your team by implementing an API many designers are familiar with, and opening it up to developers across different platforms.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:facebook/yoga.git"
},
2022-12-22 03:06:42 -08:00
"exports": {
".": {
"browser": "./dist/index.wasm.js",
"node": "./dist/index.wasm.js",
"react-native": "./dist/index.asm.js",
"default": "./dist/index.asm.js"
2022-12-22 03:06:42 -08:00
}
},
"scripts": {
"is-monolithic": "test \"$(basename \"$(pwd)\")\" = javascript",
"copy-sources": "! npm -s run is-monolithic || (rsync -r --checksum --delete ../yoga/ sources/yoga/)",
2022-11-22 15:05:05 +03:00
"build": "npm run copy-sources && make && npm run build:js",
"test": "yarn test:asm && yarn test:wasm",
"test:asm": "jest",
"test:wasm": "WASM=1 jest",
2022-11-22 15:05:05 +03:00
"benchmark": "npm run build && node tests/run-bench $(find tests/Benchmarks -name '*.js')",
2022-12-22 03:06:42 -08:00
"build:js": "babel sources --source-maps --out-dir dist && flow-copy-source sources dist"
},
"devDependencies": {
2022-12-22 03:06:42 -08:00
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
2022-12-22 03:06:42 -08:00
"@babel/plugin-transform-flow-strip-types": "^7.19.0",
"@babel/preset-env": "^7.20.2",
"flow-copy-source": "^2.0.7",
"jest": "^29.3.1"
}
}