-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.48 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
{
"name": "vue-autosizer",
"version": "0.1.4",
"description": "A light replacement for built-in <textarea> and <input> elements allowing them to automatically stretch to fit the content.",
"keywords": [
"vue",
"input",
"autosize",
"textarea"
],
"author": "Helder Lucas <helder@winio.io>",
"scripts": {
"build": "rollup -c --environment production",
"prepublish": "npm run build && npm run build:css",
"build:css": "postcss src/styles.css -o dist/vue-autosizer.min.css --env production"
},
"paths": {
"source": "src",
"destination": "dist"
},
"main": "dist/vue-autosizer.cjs.js",
"module": "dist/vue-autosizer.esm.js",
"browser": "dist/vue-autosizer.umd.js",
"style": "dist/vue-autosizer.min.css",
"repository": {
"type": "git",
"url": "https://github.com/hfalucas/vue-autosizer"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"cssnano": "^4.1.10",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"rollup": "^1.26.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-vue": "^5.1.2",
"vue-runtime-helpers": "^1.1.2",
"vue-template-compiler": "^2.6.10"
},
"license": "MIT"
}