forked from ngReact/ngReact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.99 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@pakenfit/ngreact-18",
"author": "https://github.com/davidchang/ngReact/graphs/contributors",
"scripts": {
"build": "grunt build",
"test": "grunt test",
"release": "release-it"
},
"version": "1.1.3",
"private": false,
"main": "ngReact.js",
"description": "Use React 18 Components in Angular",
"homepage": "http://davidchang.github.io/ngReact",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pakenfit/ngReact-18.git"
},
"license": "MIT",
"peerDependencies": {
"angular": "< 2.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"browserify-shim": {
"angular": "global:angular"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"angular": "1.5.3",
"angular-mocks": "1.5.3",
"browserify": "13.0.0",
"browserify-shim": "3.8.12",
"es5-shim": "4.5.8",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-docco": "^0.5.0",
"grunt-karma": "^4.0.2",
"jasmine-core": "^5.1.1",
"karma": "^6.4.2",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^0.3.6",
"load-grunt-tasks": "^5.1.0",
"phantomjs-prebuilt": "2.1.7",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^18.2.0",
"reactify": "1.1.1",
"release-it": "^17.0.3",
"watchify": "^3.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"angularjs",
"angular",
"react",
"ngReact"
],
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}