-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "stretch-transform",
"version": "0.3.2",
"description": "A javascript library to transform a plane or 3d space in a rubbery way.",
"license": "MIT",
"main": "index.js",
"scripts": {
"bundle": "browserify index.js --standalone StretchTransform -o dist/StretchTransform.js",
"dist": "npm run bundle && browserify index.js --standalone StretchTransform | uglifyjs > dist/StretchTransform.min.js",
"documentation": "documentation readme index.js --section=Reference",
"watch": "watch 'npm run bundle' .",
"onchange": "onchange 'index.js' -- npm run bundle"
},
"repository": {
"type": "git",
"url": "https://github.com/bohnacker/Stretch_Transform"
},
"keywords": [
"geometry",
"math",
"utility",
"transformation",
"transform"
],
"author": "Hartmut Bohnacker <[email protected]>",
"bugs": {
"url": "https://github.com/bohnacker/Stretch_Transform/issues"
},
"homepage": "https://hartmut-bohnacker.de/projects/stretch-transform",
"devDependencies": {
"browserify": "^14.4.0",
"documentation": "^12.1.4",
"uglify-js": "^3.0.28",
"watch": "^1.0.2",
"onchange": "6.1.0"
},
"dependencies": {
"gl-matrix": "^2.4.0"
}
}