-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "isolate-form",
"description": "An Angular directive for nested forms that prevents $invalid from propagating",
"version": "1.0.6",
"author": "91K00",
"bugs": {
"url": "https://github.com/nmutalik/isolate-form/issues",
"email": "nmutalik@gmail.com"
},
"contributors": [
{
"name": "Nikhil Mutalik",
"email": "nmutalik@gmail.com"
}
],
"devDependencies": {
"grunt": "0.4.5",
"grunt-nice-package": "0.9.3",
"grunty": "0.2.0",
"pre-git": "^0.6.2"
},
"engines": {
"node": "0.12.7",
"npm": "2.11.3"
},
"homepage": "https://github.com/nmutalik/isolate-form.git",
"keywords": [
"angular",
"directive",
"form",
"invalid",
"nested"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/nmutalik/isolate-form.git"
},
"scripts": {
"nice": "grunty grunt-nice-package nice-package",
"test": "node-qunit *.js"
},
"pre-commit": [
"npm version"
],
"post-commit": "git status",
"pre-push": [
"rm -rf node_modules",
"npm install"
],
"post-merge": "npm install"
}