-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.26 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": "ampersand-expanding-textarea-view",
"version": "1.3.0",
"description": "A small ampersand.js tool to create an expanding textarea view for an ampersand-form-view",
"main": "ampersand-expanding-textarea-view.js",
"repository": "https://github.com/datuhealth/ampersand-expanding-textarea-view",
"scripts": {
"start": "run-browser test/index.js",
"test": "browserify test/index.js | tape-run -b phantom | tap-spec",
"lint": "jshint .",
"validate": "npm ls"
},
"bugs": {
"url": "https://github.com/datuhealth/ampersand-expanding-textarea-view/issues"
},
"homepage": "https://github.com/datuhealth/ampersand-expanding-textarea-view",
"keywords": [
"Ampersand",
"textarea",
"form",
"expanding-textarea"
],
"author": "Mike Engel",
"license": "Apache-2.0",
"dependencies": {
"ampersand-input-view": "^7.0.0"
},
"devDependencies": {
"ampersand-view-conventions": "^1.1.6",
"browserify": "^13.0.0",
"function-bind": "^1.0.0",
"jshint": "^2.5.6",
"phantomjs": "^2.1.2",
"precommit-hook": "^3.0.0",
"run-browser": "^2.0.2",
"tap-spec": "^4.1.0",
"tape": "^4.2.1",
"tape-run": "^2.1.0",
"tape-suite": "^0.2.1"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}