-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.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
{
"name": "bubblesjs",
"version": "1.0.1",
"main": "dist/bubbles.cjs.js",
"module": "dist/bubbles.esm.js",
"browser": "dist/bubbles.umd.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.9.0",
"concurrently": "4.1.2",
"jest": "24.9.0",
"postcss": "^8.3.6",
"rollup": "1.32.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-scss": "2",
"rollup-plugin-uglify": "^6.0.4",
"serve": "11.3.2"
},
"scripts": {
"prepare": "yarn build",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"watch": "concurrently 'yarn build:watch' 'yarn serve -l tcp://127.0.0.1:5000'",
"test": "jest && yarn build"
},
"renovate": {
"extends": [
"config:js-lib"
],
"automerge": true,
"major": {
"automerge": false
},
"automergeType": "branch"
},
"files": [
"dist"
]
}