-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
81 lines (81 loc) · 2.38 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
{
"name": "@paciolan/remote-component",
"version": "0.0.0-semantic-versioning",
"description": "Dynamically load a React Component from a URL",
"main": "dist/index.js",
"author": "Paciolan",
"license": "MIT",
"release": {
"branch": "master",
"repositoryUrl": "[email protected]:development/library/javascript/react/remote-component.git",
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
},
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf coverage dist",
"cz": "git-cz",
"rebuild": "npm run clean && npm run build",
"test": "jest",
"test:changed": "npm run test -- --changedSince HEAD",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"watch": "npm run build -- --watch"
},
"dependencies": {
"@paciolan/remote-module-loader": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@paciolan/eslint-config-react": "^1.0.4",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-eslint": "^10.1.0",
"babel-polyfill": "^6.26.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"git-cz": "^4.7.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": ">=16.9",
"react-dom": ">=16.9"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint && npm run test:changed",
"pre-push": "npm run build && npm run test:coverage"
}
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}