-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "ampersand-model-validations-mixin",
"description": "A mixin for adding advanced validations to ampersand-model properties.",
"version": "1.0.3",
"author": "Jarred Witt <[email protected]>",
"bugs": {
"url": "https://github.com/jarredwitt/ampersand-model-validations-mixin/issues"
},
"dependencies": {
"amp-bind": "^1.0.1",
"amp-each": "^1.0.1",
"amp-extend": "^1.0.1",
"amp-has": "^1.0.1",
"amp-includes": "^1.0.2",
"amp-index-of": "~1.1.0",
"amp-is-array": "^1.0.1",
"amp-is-empty": "^1.0.2",
"amp-is-function": "~1.0.1",
"amp-is-string": "~1.0.1",
"amp-random": "^1.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"ampersand-model": "^5.0.3",
"browserify": "^9.0.7",
"jshint": "^2.6.3",
"phantomjs": "^1.9.16",
"precommit-hook": "^2.0.1",
"run-browser": "^2.0.2",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"tape-run": "^1.0.0"
},
"homepage": "https://github.com/jarredwitt/ampersand-model-validations-mixin",
"keywords": [
"model",
"validations",
"ampersandjs"
],
"license": "MIT",
"main": "ampersand-model-validations-mixin.js",
"repository": {
"type": "git",
"url": "https://github.com/jarredwitt/ampersand-model-validations-mixin.git"
},
"scripts": {
"test": "browserify tests/index.js | tape-run | tap-spec",
"validate": "jshint ."
},
"testling": {
"files": "tests/*.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"
]
}
}