-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
67 lines (67 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
{
"name": "ampersand-select-view",
"description": "A view module for intelligently rendering and validating selectbox input. Works well with ampersand-form-view.",
"version": "8.0.0",
"author": "Philip Roberts <[email protected]>",
"bugs": {
"url": "https://github.com/AmpersandJS/ampersand-select-view/issues"
},
"dependencies": {
"ampersand-dom": "^1.1.0",
"ampersand-version": "^1.0.1",
"domify": "^1.2.2",
"ampersand-view": "^10.0.1",
"matches-selector": "^1.0.0"
},
"devDependencies": {
"ampersand-view-conventions": "^1.1.1",
"function-bind": "^1.0.2",
"jshint": "^2.9.1",
"ampersand-collection": "^2.0.0",
"ampersand-form-view": "^7.0.0",
"ampersand-state": "^5.0.2",
"phantomjs-prebuilt": "^2.1.12",
"precommit-hook": "^3.0.0",
"tape": "^4.4.0",
"tape-suite": "^0.2.1",
"zuul": "^3.9.0"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/AmpersandJS/ampersand-select-view",
"keywords": [
"ampersand",
"form",
"view",
"select"
],
"license": "MIT",
"main": "ampersand-select-view.js",
"repository": {
"type": "git",
"url": "https://github.com/AmpersandJS/ampersand-select-view.git"
},
"scripts": {
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js",
"start": "zuul --local -- test/main.js",
"demo": "beefy demo/demo.js:demo.js --cwd demo",
"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",
"lint": "jshint .",
"validate": "npm ls"
},
"browserify": {
"transform": [
"ampersand-version"
]
},
"pre-commit": [
"lint",
"validate",
"test"
]
}