-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "ampersand-array-input-view",
"description": "A view module for intelligently rendering and validating inputs that should produce an array of values. Works well with ampersand-form-view.",
"version": "6.1.0",
"author": "Henrik Joreteg <henrik@andyet.net>",
"browserify": {
"transform": [
"ampersand-version"
]
},
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-array-input-view/issues"
},
"dependencies": {
"ampersand-input-view": "^7.0.0",
"ampersand-version": "^1.0.2",
"ampersand-view": "^10.0.1",
"lodash": "^4.15.0"
},
"devDependencies": {
"ampersand-form-view": "^6.0.0",
"ampersand-view-conventions": "^1.1.8",
"beefy": "^2.0.2",
"jshint": "^2.8.0",
"phantomjs-prebuilt": "^2.1.7",
"precommit-hook": "^3.0.0",
"tape": "^4.2.2",
"zuul": "^3.9.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-array-input-view",
"keywords": [
"forms",
"ampersand",
"browser"
],
"license": "MIT",
"main": "ampersand-array-input-view.js",
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/ampersand-array-input-view"
},
"scripts": {
"start": "zuul --local -- test/index.js",
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js",
"demo": "beefy demo.js",
"lint": "jshint .",
"preversion": "git checkout master && git pull && npm ls",
"publish-patch": "npm run preversion && npm version patch && git push origin master --tags && npm publish",
"publish-minor": "npm run preversion && npm version minor && git push origin master --tags && npm publish",
"publish-major": "npm run preversion && npm version major && git push origin master --tags && npm publish",
"validate": "npm ls"
},
"pre-commit": [
"lint",
"test"
]
}