forked from jackmoore/autosize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "autosize",
"description": "Autosize is a small, stand-alone script to automatically adjust textarea height to fit text.",
"version": "3.0.7",
"keywords": [
"textarea",
"form",
"ui"
],
"author": {
"name": "Jack Moore",
"url": "http://www.jacklmoore.com",
"email": "[email protected]"
},
"main": "dist/autosize.js",
"license": "MIT",
"homepage": "http://www.jacklmoore.com/autosize",
"demo": "http://www.jacklmoore.com/autosize",
"repository": {
"type": "git",
"url": "http://github.com/jackmoore/autosize.git"
},
"dependencies": {},
"devDependencies": {
"babel": "^5.4.3",
"gaze": "^0.5.1",
"jshint": "^2.5.6",
"uglify-js": "^2.4.22"
},
"config": {
"bower": {
"name": "autosize",
"ignore": [],
"moduleType": [
"amd",
"node"
]
},
"title": "Autosize",
"filename": "autosize"
},
"scripts": {
"major-release": "npm version major && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"build": "node build"
}
}