Files
yoga/package.json
Colin Eberhardt 3b406b30c2 Module pattern is now implemented via templating
Previously two modules were defined, Layout.js, which is the internal implementation, and main.js, which depended on Layout.js and performed the fill / extract functionality required for a public JavaScript API.

This simplifies the implementation by just exposing a single UMD module by directly including Layout.js within the module wrapper.

Fixes #103
2015-08-11 17:42:59 +01:00

32 lines
860 B
JSON

{
"name": "css-layout",
"version": "0.0.2",
"description": "Reimplementation of CSS layout using pure JavaScript",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/facebook/css-layout.git"
},
"author": "",
"license": "BSD",
"bugs": {
"url": "https://github.com/facebook/css-layout/issues"
},
"homepage": "https://github.com/facebook/css-layout",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-uglify": "^0.9.1",
"grunt-eslint": "^17.1.0",
"grunt-include-replace": "^3.1.0",
"grunt-karma": "^0.12.0",
"jasmine-core": "^2.2.0",
"karma": "^0.13.8",
"karma-chrome-launcher": "^0.1.7",
"karma-jasmine": "^0.3.5",
"load-grunt-tasks": "^3.2.0"
}
}