forked from axelpale/nudged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
{
"name": "nudged",
"version": "2.0.0",
"description": "Affine transformation estimator e.g. for multi-touch gestures and calibration",
"keywords": [
"geometry",
"transformation",
"scale",
"rotate",
"translate",
"pinch",
"affine",
"multitouch",
"gesture",
"estimator",
"estimation",
"similarity",
"calibration"
],
"homepage": "https://github.com/axelpale/nudged",
"main": "index.js",
"author": {
"name": "Akseli Palen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/axelpale/nudged.git"
},
"license": "MIT",
"devDependencies": {
"async": "^3.2.0",
"browserify": "^17.0.0",
"component-emitter": "^1.2.0",
"genversion": "^3.0.0",
"hammerjs": "^2.0.4",
"loadimages": "^1.0.0",
"lodash": "^4.17.21",
"standard": "^16.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.2.2"
},
"scripts": {
"start": "npm run start:examples_server",
"start:examples_server": "python2.7 -m SimpleHTTPServer 8000",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "node test/index.test.js | tap-spec",
"test:lint": "standard index.js 'lib/**/*.js' 'test/**/*.js'",
"test:lint:fix": "standard --fix index.js 'lib/**/*.js' 'test/**/*.js'",
"build:docs": "node doc/gendocs/index.js",
"gv": "genversion lib/version.js",
"release": "npm run gv && npm test && npm run build:docs && npm publish",
"test:nudged-editor": "standard --fix 'examples/nudged-editor/lib/*.js'",
"build:nudged-editor": "npm run test:nudged-editor && browserify examples/nudged-editor/lib/index.js -o examples/nudged-editor/dist/app.js",
"test:nudged-map": "standard --fix 'examples/nudged-map/lib/*.js'",
"build:nudged-map": "npm run test:nudged-map && browserify examples/nudged-map/lib/index.js -o examples/nudged-map/dist/app.js",
"test:nudged-gesture": "standard --fix 'examples/nudged-gesture/lib/*.js'",
"build:nudged-gesture": "npm run test:nudged-gesture && browserify examples/nudged-gesture/lib/index.js -o examples/nudged-gesture/dist/app.js",
"test:typical-gesture": "standard --fix 'examples/typical-gesture/lib/*.js'",
"build:typical-gesture": "npm run test:typical-gesture && browserify examples/typical-gesture/lib/index.js -o examples/typical-gesture/dist/app.js",
"build:examples": "npm run build:nudged-editor && npm run build:nudged-gesture && npm run build:typical-gesture && npm run build:nudged-map",
"build:standalone": "browserify index.js --standalone nudged -o nudged.js"
}
}