forked from coatue-oss/react2angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react2angular",
"version": "2.0.0",
"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://[email protected]/coatue-oss/react2angular.git"
},
"keywords": [],
"author": "Boris Cherny <[email protected]>",
"license": "Apache2",
"bugs": {
"url": "https://github.com/coatue-oss/react2angular/issues"
},
"homepage": "https://github.com/coatue-oss/react2angular#readme",
"peerDependencies": {
"prop-types": ">=15",
"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",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rollupify": "^0.4.0",
"tslint": "^5.5.0",
"typescript": "^2.4.2",
"watchify": "^3.9.0"
},
"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"
}
}