-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "autosize-input",
"version": "1.0.2",
"description": "Effortless, dynamic-width text boxes in vanilla JavaScript.",
"author": "Lim Yuan Qing",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/yuanqing/autosize-input.git"
},
"devDependencies": {
"browserify": "^16.1.1",
"concurrently": "^3.5.1",
"ecstatic": "^3.2.0",
"glob": "^7.1.2",
"gzip-size-cli": "^2.1.0",
"nightmare": "^3.0.0",
"opn-cli": "^3.1.0",
"prettier-standard": "^8.0.0",
"standard": "^11.0.1",
"tape": "^4.8.0",
"uglify-js": "^3.3.16",
"watchify": "^3.10.0"
},
"scripts": {
"clean": "rm -rf *.log",
"fix": "prettier-standard index.js 'test/**/*.js'",
"lint": "standard index.js 'test/**/*.js'",
"start": "concurrently \"watchify index.js --standalone autosizeInput --outfile bundle.js\" \"ecstatic --port 8080\" \"opn 'http://0.0.0.0:8080/example/'\"",
"test": "browserify index.js --standalone autosizeInput --outfile bundle.js && tape test",
"weight": "uglifyjs index.js --compress --mangle --toplevel | gzip-size"
},
"files": [
"index.js"
],
"keywords": [
"autosize",
"dom",
"form",
"html",
"input",
"size",
"width"
]
}