forked from coatue-oss/angular2react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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
66
67
68
69
70
71
72
73
{
"name": "@martinweb/angular2react",
"version": "4.0.0",
"description": "One line of code to turn any Angular 1 Component into a React Component",
"main": "index.js",
"main:esnext": "index.es2015.js",
"typings": "index.d.ts",
"scripts": {
"build": "npm run clean && tsc -d && shx mv ./index.js ./index.es2015.js && tsc -t es5",
"clean": "shx rm -f ./*.d.ts && shx rm -f ./*.map",
"pretest": "npm run build",
"prepublishOnly": "npm test",
"tdd": "concurrently -k 'npm run watch:test' 'npm run watch:ts'",
"test": "karma start --single-run",
"watch:ts": "tsc -w",
"watch:test": "karma start"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/MartinWeb/angular2react.git"
},
"keywords": [
"angular",
"react",
"adapter",
"embed",
"interop",
"interoperate",
"compat",
"compatability"
],
"author": "Boris Cherny <boris@performancejs.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MartinWeb/angular2react/issues"
},
"homepage": "https://github.com/MartinWeb/angular2react#readme",
"devDependencies": {
"@types/angular": "^1.6.43",
"@types/angular-mocks": "^1.5.11",
"@types/jasmine": "^2.8.6",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"angular": "^1.6.9",
"angular-mocks": "^1.6.9",
"angular-resource": "^1.6.9",
"browserify": "^16.1.0",
"concurrently": "^3.5.1",
"jasmine": "^3.0.0",
"jasmine-core": "^2.99.1",
"karma": "^2.0.0",
"karma-browserify": "^5.2.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rollupify": "^0.4.0",
"shx": "^0.2.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"watchify": "^3.10.0"
},
"dependencies": {
"ngimport": "^1.0.0"
},
"peerDependencies": {
"angular": ">=1.5.0",
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
}
}