Files
yoga/package.json

33 lines
910 B
JSON
Raw Normal View History

2015-02-01 00:21:51 +00:00
{
"name": "css-layout",
2015-03-05 09:35:37 -08:00
"version": "0.0.2",
2015-02-01 00:21:51 +00:00
"description": "Reimplementation of CSS layout using pure JavaScript",
2015-02-07 00:01:35 -05:00
"main": "src/main.js",
2015-02-01 00:21:51 +00:00
"scripts": {
2015-02-17 15:44:08 -05:00
"pretest": "./node_modules/eslint/bin/eslint.js src",
"test": "./node_modules/karma/bin/karma start ./karma.conf.js --single-run"
2015-02-01 00:21:51 +00:00
},
"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": {
2015-02-17 15:44:08 -05:00
"eslint": "^0.14.1",
"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",
"jasmine-core": "^2.2.0",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-jasmine": "^0.3.5"
}
2015-02-01 00:21:51 +00:00
}