This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
71 lines (71 loc) · 2.16 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
{
"name": "dropd-component",
"private": true,
"version": "1.0.2",
"license": "MIT",
"description": "⚡️Zero-dependency minimalistic dropdown component for React and Vue.",
"workspaces": [
"packages/*"
],
"files": [
"packages"
],
"scripts": {
"test": "npm-run-all test:*",
"test:react": "jest -c packages/react-dropd/jest.config.js",
"fresh": "rm -rf node_modules && yarn install -W",
"build": "rm -rf packages/*-dropd/dist && npm-run-all build:* && yarn test && bundlesize",
"build:vue": "rollup -c packages/vue-dropd/rollup.config.js",
"build:react": "rollup -c packages/react-dropd/rollup.config.js && yarn test:react",
"dev": "concurrently --kill-others \"npm run dev:*\"",
"dev:vue": "rollup -c packages/vue-dropd/rollup.config.js -w",
"dev:react": "rollup -c packages/react-dropd/rollup.config.js -w"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-transform-classes": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"bundlesize": "^0.17.1",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"jest": "^24.7.1",
"lerna": "^3.13.1",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-testing-library": "^6.1.2",
"rollup": "^1.9.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-eslint": "^5.1.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-sass-variables": "^0.1.1",
"rollup-plugin-terser": "^4.0.4"
},
"bundlesize": [
{
"path": "packages/*-dropd/dist/*.js"
}
],
"keywords": [
"vue",
"react",
"vue-component",
"react-component",
"select",
"vue-select",
"react-select",
"dropdown",
"ui"
]
}