-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.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
{
"name": "nanodrag",
"version": "2.0.0",
"description": "A small touchdrag events library",
"main": "nanodrag.js",
"scripts": {
"test": "standard && npm run dep && browserify test/*.spec.js | tape-run",
"build": "npm test && mkdir -p dist || exit 0 && browserify nanodrag.js -p tinyify > dist/nanodrag.min.js",
"start": "bankai start example.js",
"dep": "dependency-check . --entry=nanodrag.js && dependency-check . --entry=nanodrag.js --no-dev --unused",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toddself/nanodrag.git"
},
"keywords": [
"drag",
"touchevents",
"touchdown",
"touchstart",
"touchend",
"swipe",
"touchdrag"
],
"author": "Todd Kennedy <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/toddself/nanodrag/issues"
},
"homepage": "https://github.com/toddself/nanodrag#readme",
"dependencies": {
"global": "^4.3.2",
"nanobus": "^4.3.1"
},
"devDependencies": {
"bankai": "^9.1.0",
"browserify": "^14.5.0",
"dependency-check": "^2.9.2",
"standard": "^10.0.3",
"tape": "^4.8.0",
"tape-run": "^3.0.1",
"tinyify": "^2.4.0"
}
}