-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathpackage.json
78 lines (78 loc) · 2.55 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
{
"name": "jquerypp",
"title": "jQuery++",
"description": "jQuery's missing utils and special events",
"version": "2.0.0",
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"web": "http://bitovi.com/"
},
"peerDependencies": {
"jquery": ">1.9.0"
},
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"test": "grunt test --stack",
"build": "grunt build"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-banner": "^0.3.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.0",
"jquery": "^2.1.3",
"steal": "0.7.X",
"steal-qunit": "0.0.2",
"steal-tools": "^0.8.2",
"syn": "0.1.X",
"system-text": "0.1.0",
"testee": "^0.2.5"
},
"main": "./index",
"system": {
"main": "index",
"ignoreBrowser": true,
"map": {
"jquery/jquery": "jquery",
"steal-qunit/steal-qunit": "steal-qunit"
},
"npmIgnore":[
"grunt", "grunt-banner", "grunt-cli", "grunt-contrib-jshint", "testee"
]
},
"homepage": "http://jquerypp.com",
"repository": {
"type": "git",
"url": "git@github.com:bitovi/jquerypp.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"browser": {
"./jquerypp": "./dist/cjs/index",
"./dom/animate/animate": "./dist/cjs/dom/animate/animate",
"./dom/compare/compare": "./dist/cjs/dom/compare/compare",
"./dom/cookie/cookie": "./dist/cjs/dom/cookie/cookie",
"./dom/form_params/form_params": "./dist/cjs/dom/form_params/form_params",
"./dom/range/range": "./dist/cjs/dom/range/range",
"./dom/selection/selection": "./dist/cjs/dom/selection/selection",
"./dom/within/within": "./dist/cjs/dom/within/within",
"./dom/destroyed/removed": "./dist/cjs/event/destroyed/removed",
"./dom/drag/drag": "./dist/cjs/event/drag/drag",
"./dom/drop/drop": "./dist/cjs/event/drop/drop",
"./dom/hover/hover": "./dist/cjs/event/hover/hover",
"./dom/key/key": "./dist/cjs/event/key/key",
"./dom/pause/pause": "./dist/cjs/event/pause/pause",
"./dom/resize/resize": "./dist/cjs/event/resize/resize",
"./dom/swipe/swipe": "./dist/cjs/event/swipe/swipe"
}
}