-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (33 loc) · 1.01 KB
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
{
"name": "js-gestures",
"version": "0",
"description": "Javascript gesture library",
"main": "gestureManager.js",
"repository": {
"type": "git",
"url": "git+https://github.com/atotic/js-gestures.git"
},
"keywords": [
"gestures"
],
"author": "atotic@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/atotic/js-gestures/issues"
},
"homepage": "https://github.com/atotic/js-gestures#README.md",
"scripts": {
"localhost": "'./node_modules/.bin/http-server' --port 8082 -c-1",
"test": "node test/framework/seleniumRunner.js",
"md": "npx mdlive",
"wc": "find . -not \\( -path ./test -prune \\) -not \\( -path ./node_modules -prune \\) -not \\( -path ./.git -prune \\) -name '*.js' -or -name '*.html' | xargs wc",
"test-wc": "find ./test -name '*.js' -or -name '*.html' | xargs wc"
},
"devDependencies": {
"colorize-node": "^1.0.0",
"http-server": "^14.1.1",
"jsdoc": "^4.x",
"markdown-live": "^1.x",
"selenium-webdriver": "^4.21.0"
}
}