-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 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
{
"name": "@jpex-js/vue",
"version": "1.0.0",
"main": "dist/cjs/vue-jpex.js",
"module": "dist/es/vue-jpex.js",
"types": "dist/ts/index.d.ts",
"repository": "git@github.com:jpex-js/vue.git",
"author": "Jack Ellis <jack.m.ellis@hotmail.co.uk>",
"license": "MIT",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --ext .ts,.tsx \"src\" && tsc --noEmit",
"test": "#jest",
"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": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.11.5",
"@commitlint/config-conventional": "^9.1.2",
"@jpex-js/babel-plugin": "^1.4.0",
"@team-griffin/eslint-config": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"browser-env": "^3.3.0",
"eslint": "^8.17.0",
"jpex": "^4.3.0",
"module-alias": "^2.2.2",
"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",
"vue": "^3.2.37"
},
"peerDependencies": {
"jpex": "^4.3.0",
"vue": "^3.2.37"
}
}