-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "react-angular",
"version": "0.4.0",
"description": "Use AngularJS 1.x templates in react components",
"main": "lib/index.js",
"scripts": {
"clean": "rm -Rf lib",
"build": "npm run clean && babel src -d lib --source-maps",
"build:watch": "npm run build -- -w",
"test": "karma start karma.conf.js",
"test:watch": "karma start karma.conf.js --no-single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fmauquie/react-angular.git"
},
"author": "Fabien Mauquié",
"license": "MIT",
"bugs": {
"url": "https://github.com/fmauquie/react-angular/issues"
},
"homepage": "https://github.com/fmauquie/react-angular#readme",
"devDependencies": {
"angular": "^1.5.8",
"angular-mocks": "^1.5.8",
"babel-cli": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.11.0",
"chai": "^3.5.0",
"karma": "^1.1.2",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.0",
"ngreact": "^0.3.0",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"webpack": "^1.13.1"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}