-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 2.23 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
{
"name": "mobile-button",
"version": "0.8.1",
"description": "A set of buttons for the mobile web",
"author": {
"name": "Paul Panserrieu",
"email": "[email protected]",
"url": "https://github.com/peutetre"
},
"contributors": [
{
"name": "Baptiste Morelle"
},
{
"name": "Nicolae Namolovan"
}
],
"keywords": [
"browserify",
"touchevents",
"browser",
"mobile",
"ui"
],
"homepage": "https://github.com/peutetre/mobile-button",
"bugs": "https://github.com/peutetre/mobile-button/issues",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/peutetre/mobile-button.git"
},
"scripts": {
"build-test": "browserify ./test/test.js -o ./test/main.js --debug;",
"build-ex": "browserify ./example/index.js -o ./example/main.js --debug",
"build-ex1": "browserify ./example/default/index.js -o ./example/default/main.js --debug",
"build-ex2": "browserify ./example/scrollable-x/index.js -o ./example/scrollable-x/main.js --debug",
"build-ex3": "browserify ./example/scrollable-y/index.js -o ./example/scrollable-y/main.js --debug",
"build-ex4": "browserify ./example/monotouchable/default/index.js -o ./example/monotouchable/default/main.js --debug",
"build-ex5": "browserify ./example/monotouchable/scrollable-x/index.js -o ./example/monotouchable/scrollable-x/main.js --debug",
"build-ex6": "browserify ./example/monotouchable/scrollable-y/index.js -o ./example/monotouchable/scrollable-y/main.js --debug",
"build": "npm run build-test; npm run build-ex; npm run build-ex1; npm run build-ex2; npm run build-ex3; npm run build-ex4; npm run build-ex5; npm run build-ex6;",
"test": "npm run build; grunt",
"clean": "rm test/main.js example/main.js example/default/main.js example/scrollable-x/main.js example/scrollable-y/main.js"
},
"dependencies": {
"q": "~1.1.2"
},
"devDependencies": {
"mocha": "~2.0.1",
"expect.js": "0.3.1",
"browserify": "7.0.1",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-saucelabs": "8.4.1",
"grunt-contrib-connect": "0.9.0",
"watchify": "~2.2.1",
"qstart": "0.2.x",
"iscroll": "5.1.3"
},
"licenses": [
{
"type": "MIT"
}
]
}