-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.08 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.08 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@pragmateam/react-to-angularjs",
"version": "0.0.1",
"description": "Convert React components to AngularJS components",
"keywords": [
"react",
"angular",
"angularjs"
],
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/Pragmateam/react-to-angularjs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Pragmateam/react-to-angularjs.git"
},
"bugs": {
"url": "https://github.com/Pragmateam/react-to-angularjs/issues"
},
"author": {
"name": "Pragmateam Pty Ltd",
"email": "talent@pragma.team",
"url": "https://pragma.team"
},
"contributors": [
{
"name": "Igor J. Santos <igor@pragma.team>",
"url": "http://github.com/igorjs"
},
{
"name": "Felippe Mauricio <felippe.mauricio@pragma.team>",
"url": "http://github.com/felippemauricio"
}
],
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"jsnext:main": "./lib/index.js",
"cjs": "./lib/index.js",
"files": [
"lib/"
],
"sideEffects": false,
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"postinstall": "husky install",
"build": "tsup",
"clean": "shx rm -rf node_modules lib && shx echo Done",
"dev": "concurrently \"tsc --noEmit --watch\" \"tsup --watch\"",
"lint": "eslint src/**",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"codestyle": "prettier --check \"./**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test:ci": "jest --ci --runInBand --passWithNoTests --coverage --watchAll=false",
"test:watch": "jest --watch"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/angular": "^1.8.4",
"@types/angular-mocks": "^1.7.1",
"@types/jest": "^29.5.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.60.1",
"angular": "^1.8.3",
"angular-mocks": "^1.8.3",
"concurrently": "^7.6.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.7.0",
"eslint-plugin-sonarjs": "^0.19.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-transform-stub": "^2.0.0",
"jest-transformer-svg": "^2.0.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^19.0.5",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"angular": "^1.8.3",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}