-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.25 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 4.25 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@digital-engine/bubble-plugin-helpers",
"version": "1.0.4",
"description": "Helpers for building Bubble.io plugins",
"main": "build/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"start": "webpack serve --config webpack.config.demo.js",
"build": "webpack && tsc",
"build:demo": "webpack --config webpack.config.demo.js",
"test": "jest --silent",
"coverage": "npm run test -- --coverage",
"prepare": "husky install && npm run build",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint --edit $1",
"release": "standard-version -a --header \"# Changelog\n\nAll notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n\n## Versions\"",
"bump:readme": "replace \"`npm run version:latest | tail -n -1`\" \"`npm run version:newest | tail -n -1`\" README.md",
"version:latest": "standard-version --dry-run | sed -e '3!d' -e 's/.*from //g' -e 's/ to .*//g'",
"version:newest": "standard-version --dry-run | sed -e '3!d' -e 's/.*to //g'",
"changelog:latest": "rexreplace \"^.*?#+\\s\\[.*?\n.*?(?=\\s*#+\\s\\[)\" \"_\" -s -M -G -m -o \"CHANGELOG.md\" | tail -n +7 > CHANGELOG-LATEST.md",
"trypublish": "npm publish || true"
},
"repository": {
"type": "git",
"url": "https://github.com/digital-engine-info/bubble-plugin-helpers"
},
"author": "Florian Briand <contact@digital-engine.info> (https://github.com/nabellaleen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/digital-engine-info/bubble-plugin-helpers/issues"
},
"homepage": "https://github.com/digital-engine-info/bubble-plugin-helpers",
"keywords": [
"library",
"plugin",
"nocode",
"bubble.io"
],
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-typescript": "^7.13.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.12",
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-minify": "^0.5.0",
"commitizen": "4.2.3",
"css-loader": "^5.2.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.23.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "6.0.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.4.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prettier": "^2.2.1",
"prettier-webpack-plugin": "^1.2.0",
"replace": "1.2.1",
"rexreplace": "6.1.1",
"standard-version": "9.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"typescript": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "4.0.0-beta.1"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/lib/index.js",
"!src/demo/index.js",
"!src/utils/**",
"!**/tests/**"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"modulePaths": [
"<rootDir>/src/"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
"\\.(css|less)$": "<rootDir>/scripts/testMock.js"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"scripts": {
"prerelease": "npm run bump:readme",
"postbump": "npm run build",
"precommit": "git add build/* README.md"
}
}
}