-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.82 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.82 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
{
"name": "react-jpex",
"version": "1.3.0",
"main": "dist/cjs/react-jpex.js",
"module": "dist/es/react-jpex.js",
"types": "dist/ts/index.d.ts",
"repository": "git@github.com:jpex-js/react-jpex.git",
"author": "Jack Ellis <jack.ellis@godaddy.com>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"lint": "eslint --ext .ts,.tsx --fix \"src\" && tsc --noEmit",
"test": "ava",
"build:prepare": "rm -rf dist",
"build:js": "rollup -c",
"build:ts": "tsc -d --outDir dist/ts --emitDeclarationOnly",
"build:post": "node ./postbuild-checks.js",
"build": "yarn build:prepare && yarn build:js && yarn build:ts && yarn build:post",
"prepublishOnly": "yarn build",
"ci": "yarn install && yarn lint && yarn test && yarn build"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.11.5",
"@commitlint/config-conventional": "^9.1.2",
"@jpex-js/babel-plugin": "^1.8.0",
"@team-griffin/eslint-config": "^3.3.0",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.0",
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"ava": "^3.12.1",
"browser-env": "^3.3.0",
"eslint": "^8.17.0",
"jpex": "^5.0.0",
"module-alias": "^2.2.2",
"nyc": "^15.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-test-renderer": "^18.1.0",
"rollup": "^2.26.9",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"semantic-release": "^17.1.1",
"typescript": "^4.0.5"
},
"peerDependencies": {
"jpex": "^4.3.0 || ^5.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}