forked from AmpersandJS/ampersand-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.6 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@tactivos/ampersand-view",
"description": "A smart base view for Backbone apps, to make it easy to bind collections and properties to the DOM.",
"version": "9.0.3",
"author": "Henrik Joreteg <[email protected]>",
"browser": "./ampersand-view.js",
"browserify": {
"transform": [
"ampersand-version"
]
},
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-view/issues"
},
"dependencies": {
"ampersand-collection-view": "1.4.0",
"ampersand-dom-bindings": "^3.5.0",
"ampersand-state": "4.8.2",
"ampersand-version": "^1.0.2",
"component-classes": "^1.2.4",
"domify": "^1.3.2",
"events-mixin": "^1.2.0",
"get-object-path": "^0.0.3",
"lodash.assign": "^3.0.0",
"lodash.bind": "^3.1.0",
"lodash.flatten": "^3.0.2",
"lodash.foreach": "^3.0.2",
"lodash.get": "^3.1.0",
"lodash.invoke": "^3.1.0",
"lodash.isstring": "^3.0.1",
"lodash.last": "^3.0.0",
"lodash.pick": "^3.1.0",
"lodash.result": "^3.0.0",
"lodash.uniqueid": "^3.0.0",
"matches-selector": "^1.0.0"
},
"devDependencies": {
"ampersand-model": "^5.0.1",
"ampersand-rest-collection": "^3.0.0",
"browserify": "^9.0.4",
"jsdom": "^4.1.0",
"phantomjs": "^1.9.7-15",
"precommit-hook": "^2.0.1",
"run-browser": "^2.0.2",
"tap-spec": "^2.2.2",
"tape": "^3.5.0",
"tape-run": "^1.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"
},
"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"
]
},
"directories": {
"test": "test"
}
}