iwmlib/package.json

61 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2019-03-21 09:57:27 +01:00
{
2019-03-22 12:54:57 +01:00
"name": "iwmlib",
2022-04-29 10:30:05 +02:00
"version": "1.1.2",
2019-03-22 12:54:57 +01:00
"description": "An Open Source library for multi-touch, WebGL powered applications.",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
2019-05-29 14:24:39 +02:00
"test": "node bin/testrunner.js",
2019-08-12 12:16:05 +02:00
"test-eventlistener": "node ./test/tests/eventlistener/index.js",
2019-08-12 15:38:03 +02:00
"test-eventlistener-remove": "node ./test/tests/eventlistener/remove.js",
"test-eventlistener-hammerjs": "node ./test/tests/eventlistener/hammerjs.js",
"test-eventlistener-hammerjs-destroy": "node ./test/tests/eventlistener/hammerjs-destroy.js",
2019-08-13 12:46:24 +02:00
"test-eventlistener-interactionmapper": "node ./test/tests/eventlistener/interactionmapper.js",
"test-eventlistener-interactionmapper-off": "node ./test/tests/eventlistener/interactionmapper-off.js",
2019-03-22 12:54:57 +01:00
"build": "rollup --config ./rollup.config.js",
"watch": "rollup --watch --config ./rollup.config.js",
2019-03-29 08:49:53 +01:00
"3rdparty": "gulp",
2019-07-18 12:26:39 +02:00
"prettier": "gulp prettify",
2019-05-29 14:24:39 +02:00
"jsdoc": "jsdoc -c ./doc/conf.json"
2019-03-22 12:54:57 +01:00
},
"repository": {
"type": "git",
"url": "https://gitea.iwm-tuebingen.de:IWMBrowser/iwmlib.git"
},
"author": "",
"license": "LGPL-3.0-or-later",
2019-03-22 13:48:42 +01:00
"devDependencies": {
2020-01-20 11:33:53 +01:00
"@pixi/jsdoc-template": "^2.5.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
2019-07-18 12:26:39 +02:00
"fs-extra": "^8.0.1",
2019-05-14 11:54:25 +02:00
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
2019-11-13 14:36:48 +01:00
"gulp-prettier": "^2.3.0",
2019-03-22 13:48:42 +01:00
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
2019-07-16 13:54:04 +02:00
"gulp-uglify": "^3.0.2",
2019-07-17 10:04:59 +02:00
"htmlhint": "^0.11.0",
2019-11-13 14:36:48 +01:00
"prettier": "^1.19.1",
2019-09-20 09:54:32 +02:00
"puppeteer": "^1.20.0",
2019-10-11 09:19:48 +02:00
"stylelint": "^11.1.1",
2019-09-20 09:54:32 +02:00
"stylelint-config-standard": "^19.0.0"
},
"dependencies": {
"gsap": "^2.1.3",
"hammerjs": "^2.0.8",
"optimal-select": "^4.0.1",
2020-01-22 13:50:40 +01:00
"pixi-compressed-textures": "^2.0.5",
2019-11-04 09:45:10 +01:00
"pixi-ease": "^2.4.2",
2019-09-10 16:34:59 +02:00
"pixi-filters": "^3.0.3",
2019-11-04 09:45:10 +01:00
"pixi-particles": "^4.2.0",
2020-01-22 13:50:40 +01:00
"pixi-projection": "^0.3.7",
2020-02-04 16:48:36 +01:00
"pixi-viewport": "^4.8.0",
"pixi.js": "^5.2.1",
2019-07-30 16:56:29 +02:00
"propagating-hammerjs": "^1.4.7"
2019-03-22 13:48:42 +01:00
}
2019-03-21 09:57:27 +01:00
}