-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "knockout-validations-extender",
"version": "1.0.1",
"description": "knockout validations extender that allows you to perform validations in view models and their nested observables.",
"main": "lib/knockout-validations-extender.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/lucastschmidt/knockout-validations-extender"
},
"keywords": [
"knockout",
"validations",
"extender"
],
"author": "Lucas Schmidt",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucastschmidt/knockout-validations-extender/issues"
},
"homepage": "https://github.com/lucastschmidt/knockout-validations-extender",
"dependencies": {
"knockout": "^3.1.0",
"lodash": "^2.4.1",
"loglevel": "^1.2.0",
"promiz": "^0.3.0"
},
"devDependencies": {
"browserify": "^4.2.3",
"browserify-shim": "^3.6.0",
"grunt": "~0.4.5",
"grunt-browserify": "2.1.3",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-coffee": "^0.10.1",
"grunt-contrib-uglify": "^0.5.1",
"underscore.string": "2.3.3"
},
"browserify-shim": {
"knockout": "global:ko",
"lodash": "global: _"
}
}