-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "ampersand-view-switcher",
"description": "A utility for swapping out views inside a container element.",
"version": "3.0.0",
"author": "Henrik Joreteg <[email protected]>",
"browserify": {
"transform": [
"ampersand-version"
]
},
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-view-switcher/issues"
},
"dependencies": {
"ampersand-version": "^1.0.0"
},
"devDependencies": {
"ampersand-view": "^9.0.2",
"ampersand-view-conventions": "^1.1.8",
"browserify": "^13.0.0",
"jshint": "^2.9.1",
"phantomjs-prebuilt": "^2.1.3",
"precommit-hook": "^3.0.0",
"tape": "^4.4.0",
"zuul": "^3.9.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-view-switcher",
"keywords": [
"ampersand",
"views",
"backbone",
"clientside"
],
"license": "MIT",
"main": "ampersand-view-switcher.js",
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/ampersand-view-switcher"
},
"scripts": {
"start": "zuul --local -- test/main.js",
"test": "zuul --phantom -- test/main.js",
"test-ci": "zuul -- test/main.js",
"lint": "jshint .",
"validate": "npm ls"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}