forked from coatue-oss/angular2react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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": "angular2react",
"version": "2.2.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 && mv ./index.js ./index.es2015.js && tsc -t es5",
"clean": "rm -f ./*.d.ts; 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://[email protected]/coatue-oss/angular2react.git"
},
"keywords": [],
"author": "Boris Cherny <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coatue-oss/angular2react/issues"
},
"homepage": "https://github.com/coatue-oss/angular2react#readme",
"devDependencies": {
"@types/angular-mocks": ">=1.5.0",
"@types/jasmine": "^2.6.0",
"@types/lodash.kebabcase": "^4.1.3",
"angular": ">=1.5.0",
"angular-mocks": ">=1.5.0",
"angular-resource": "^1.6.6",
"browserify": "^14.5.0",
"concurrently": "^3.5.0",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rollupify": "^0.4.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"watchify": "^3.9.0"
},
"dependencies": {
"@types/angular": ">=1.5.0",
"@types/react": "^16.0.18",
"@types/react-dom": "^16.0.2",
"lodash.kebabcase": "^4.1.1",
"ngimport": "^0.8.0"
},
"peerDependencies": {
"angular": ">=1.5.0",
"react": "^>=15.0.0",
"react-dom": ">=15.0.0"
}
}