-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
79 lines (79 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ampersand-view",
"description": "A smart base view for Backbone apps, to make it easy to bind collections and properties to the DOM.",
"version": "10.0.3",
"author": "Henrik Joreteg <[email protected]>",
"browser": "./ampersand-view.js",
"browserify": {
"transform": [
"ampersand-version"
]
},
"bugs": "https://github.com/ampersandjs/ampersand-view/issues",
"dependencies": {
"ampersand-collection-view": "^2.0.2",
"ampersand-dom-bindings": "^3.9.1",
"ampersand-state": "^5.0.2",
"ampersand-version": "^1.0.2",
"component-classes": "^1.2.6",
"domify": "^1.4.0",
"events-mixin": "^1.3.0",
"lodash": "^4.17.4",
"matches-selector": "^1.2.0"
},
"devDependencies": {
"ampersand-model": "^8.0.0",
"ampersand-rest-collection": "^6.0.0",
"browserify": "^14.3.0",
"jsdom": "^11.1.0",
"precommit-hook": "^3.0.0",
"run-browser": "^2.0.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"tape-run": "^3.0.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-view",
"keywords": [
"backbone",
"view",
"browser",
"browserify"
],
"license": "MIT",
"main": "./ampersand-view.js",
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/ampersand-view.git"
},
"scripts": {
"validate": "jshint .",
"start": "run-browser test/index.js",
"test": "browserify test/index.js | tape-run | tap-spec",
"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 ."
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/9..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
},
"pre-commit": [
"lint",
"validate",
"test"
]
}