2017-01-02 02:22:45 -08:00
{
2018-01-18 07:55:50 -08:00
"name" : "yoga-layout" ,
2018-02-15 09:32:29 -08:00
"version" : "1.9.3" ,
2018-01-18 07:55:50 -08:00
"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." ,
2018-02-16 18:25:02 -08:00
"license" : "MIT" ,
2018-01-18 07:55:50 -08:00
"repository" : {
"type" : "git" ,
"url" : "git@github.com:facebook/yoga.git"
} ,
2022-11-22 15:05:05 +03:00
"main" : "./dist/index" ,
2018-01-18 07:55:50 -08:00
"scripts" : {
"is-monolithic" : "test \"$(basename \"$(pwd)\")\" = javascript" ,
2018-01-19 11:25:26 -08:00
"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" : "time mocha --expose-gc -r tests/tools.js tests/Facebook.Yoga/**/*.js" ,
"benchmark" : "npm run build && node tests/run-bench $(find tests/Benchmarks -name '*.js')" ,
"build:js" : "babel sources --out-dir dist && flow-copy-source sources dist"
2018-01-18 07:55:50 -08:00
} ,
2022-11-22 15:05:05 +03:00
"dependencies" : { } ,
2018-01-18 07:55:50 -08:00
"devDependencies" : {
"babel-cli" : "^6.24.1" ,
"babel-core" : "^6.25.0" ,
"babel-plugin-replace-require" : "^0.0.4" ,
"babel-plugin-transform-flow-strip-types" : "^6.22.0" ,
"babel-preset-es2015" : "^6.24.1" ,
"babel-preset-stage-3" : "^6.24.1" ,
"cross-env" : "^4.0.0" ,
2019-07-31 06:38:30 -07:00
"flow-copy-source" : "^2.0.7" ,
2018-01-18 07:55:50 -08:00
"mocha" : "^3.2.0"
}
2017-01-02 02:22:45 -08:00
}