Files
react2angular/package.json
T
Jiri Spac d8a6d4ab80 fixes #33
2017-08-31 17:06:15 +02:00

64 lines
1.8 KiB
JSON

{
"name": "react2angular",
"version": "1.1.4",
"description": "The easiest way to embed React components in Angular 1 apps!",
"main": "index.js",
"main:esnext": "index.es2015.js",
"typings": "index.d.ts",
"scripts": {
"build": "npm run clean; tsc -d -t es2015 && mv ./index.js ./index.es2015.js && tsc -t es5",
"clean": "rm ./*.d.ts; rm ./*.map; exit 0",
"pretest": "npm run build",
"prepublish": "npm test",
"test": "karma start --single-run",
"tdd": "npm-run-all -pr watch:*",
"watch:ts": "tsc -w",
"watch:test": "karma start"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/coatue-oss/react2angular.git"
},
"keywords": [],
"author": "Boris Cherny <boris@performancejs.com>",
"license": "Apache2",
"bugs": {
"url": "https://github.com/coatue-oss/react2angular/issues"
},
"homepage": "https://github.com/coatue-oss/react2angular#readme",
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15"
},
"devDependencies": {
"@types/angular-mocks": "^1.5.10",
"@types/jasmine": "^2.5.53",
"@types/jquery": "^3.2.10",
"angular-mocks": "^1.6.5",
"jasmine": "^2.7.0",
"karma": "^1.7.0",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-source-map-support": "^1.2.0",
"ngimport": "^0.7.2",
"npm-run-all": "^4.0.2",
"rollupify": "^0.4.0",
"tslint": "^5.5.0",
"typescript": "^2.4.2",
"watchify": "^3.9.0",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"dependencies": {
"@types/angular": "^1.6.28",
"@types/lodash.frompairs": "^4.0.2",
"@types/react": "^16.0.0",
"@types/react-dom": "^15.5.1",
"angular": ">=1.6.5",
"lodash.frompairs": "^4.0.1",
"ngcomponent": "^3.0.2"
}
}