-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
package.json
76 lines (76 loc) · 2.49 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
{
"name": "hammerjs",
"title": "Hammer.JS",
"description": "A javascript library for multi-touch gestures",
"version": "2.0.8",
"homepage": "http://hammerjs.github.io/",
"license": "MIT",
"keywords": [
"touch",
"gestures"
],
"author": {
"name": "Jorik Tangelder",
"email": "[email protected]"
},
"contributors": [
{
"name": "Alexander Schmitz",
"email": "[email protected]"
},
{
"name": "Chris Thoburn",
"email": ""
}
],
"repository": {
"type": "git",
"url": "git://github.com/hammerjs/hammer.js.git"
},
"bugs": {
"url": "https://github.com/hammerjs/hammer.js/issues"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"bannerize": "^1.0.2",
"blanket": "^1.2.3",
"changelogplease": "^1.2.0",
"ember-suave": "^4.0.0",
"git-tags": "^0.2.4",
"hammer-simulator": "git://github.com/hammerjs/simulator#master",
"jquery": "^3.1.0",
"jquery-hammerjs": "2.0.x",
"jscs": "^3.0.7",
"jshint": "^2.9.2",
"jshint-stylish": "^2.2.0",
"lodash-compat": "^3.10.2",
"node-qunit-phantomjs": "^1.4.0",
"qunitjs": "^2.0.0",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"run-when-changed": "^2.1.0",
"serve": "^1.4.0",
"uglify-js": "^3.4.0"
},
"main": "hammer.js",
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"bannerize": "bannerize hammer.js hammer.min.js",
"connect": "serve -p 8000 ./",
"rollup": "rollup -c",
"uglify": "uglifyjs hammer.js --source-map \"filename=hammer.min.js.map\" -o hammer.min.js --timings",
"string-replace": "node string-replace.js",
"jshint": "jshint src/**/*.js tests/unit/*.js tests/unit/gestures/*.js --config .jshintrc --verbose --reporter=node_modules/jshint-stylish",
"jscs": " jscs src/**/*.js tests/unit/*.js tests/unit/gestures/*.js --config=./.jscsrc",
"qunit": "phantomjs node_modules/qunit-phantomjs-runner/runner-list.js tests/unit/index.html 15",
"watch": "run-when-changed --watch 'src/**/*.js' --watch 'tests/unit/*.js' --watch 'tests/unit/gestures/*.js' --exec 'npm run watch-tasks'",
"watch-tasks": "npm run rollup && npm run string-replace && npm run uglify && npm run jshint && npm run jscs",
"build": "npm run rollup && npm run string-replace && npm run uglify && npm run bannerize",
"test": "npm run build && npm run jshint && npm run jscs && npm run qunit"
}
}