-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
90 lines (90 loc) · 2.54 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
82
83
84
85
86
87
88
89
90
{
"name": "breadstick",
"version": "0.2.15",
"private": false,
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/es/index.js",
"unpkg": "dist/umd/index.js",
"jsdelivr": "dist/umd/index.js",
"author": {
"name": "Jonathan Bakebwa",
"url": "https://github.com/codebender828"
},
"license": "MIT",
"keywords": [
"front-end",
"vue",
"notifications",
"toast",
"snackbar",
"breadstick",
"stacking",
"position",
"dismissible",
"functional"
],
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/codebender828/breadstick"
},
"scripts": {
"dev": "watch 'yarn build:es' src",
"build": "yarn build:cjs && yarn build:es",
"build:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel --root-mode upward src -d dist --copy-files",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel --root-mode upward src -d dist/es --copy-files",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "jest --passWithNoTests",
"test:watch": "jest --passWithNoTests --watchAll",
"lint": "vue-cli-service lint"
},
"peerDependencies": {
"animejs": "^3.1.0",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-plugin-unit-jest": "^4.0.0",
"@vue/cli-service": "^4.0.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"breadstick": "^0.1.21",
"core-js": "^3.3.2",
"cross-env": "^6.0.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^3.0.9",
"jest": "^25.1.0",
"lint-staged": "^9.4.2",
"rollup": "^1.27.12",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-scss": "^1.0.2",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-uglify": "^6.0.4",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.3.0",
"watch": "^1.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}