Files
konva/package.json

111 lines
2.8 KiB
JSON
Raw Normal View History

{
2015-01-27 00:07:51 -07:00
"name": "konva",
2021-03-03 12:06:49 -05:00
"version": "7.2.5",
2015-01-27 15:25:10 +07:00
"author": "Anton Lavrenov",
2018-10-24 08:02:06 -05:00
"files": [
"README.md",
"konva.js",
"konva.min.js",
2019-01-24 08:46:38 -05:00
"konva.d.ts",
2019-02-27 08:06:04 -05:00
"types",
"lib"
2018-10-24 08:02:06 -05:00
],
2019-02-27 11:18:21 -05:00
"main": "./lib/index.js",
2019-03-06 22:19:32 -05:00
"typings": "./types/index-types.d.ts",
2015-12-22 17:19:19 +07:00
"scripts": {
2019-01-19 21:29:52 -05:00
"start": "npm run watch & gulp",
"lint": "gulp lint",
2019-01-01 15:59:27 -05:00
"build": "npm run compile && gulp build",
"full-build": "npm run build && npm t",
"test": "node ./test/import-test.js && mocha-headless-chrome -f ./test/runner.html -a disable-web-security && npm run test:types",
"test:types": "tsc -p ./test/ --noEmit",
2018-10-24 08:02:06 -05:00
"prettier": "prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote",
2019-02-27 08:06:04 -05:00
"tsc": "tsc -d --declarationDir ./types --removeComments --module CommonJS || echo \"tsc faild for some file(s).\"",
2019-01-01 15:59:27 -05:00
"rollup": "rollup -c",
"clean": "rm -rf ./lib && rm -rf ./types",
"compile": "npm run clean && npm run tsc && cp ./src/index-types.d.ts ./types && npm run rollup",
2020-06-02 12:16:44 -05:00
"watch": "rollup -c -w",
"size": "size-limit"
2015-12-22 17:19:19 +07:00
},
2020-12-16 14:22:00 -05:00
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/lavrton"
},
{
"type": "opencollective",
"url": "https://opencollective.com/konva"
},
{
"type": "github",
"url": "https://github.com/sponsors/lavrton"
}
],
2020-06-02 12:16:44 -05:00
"size-limit": [
{
2020-06-19 10:36:12 -05:00
"limit": "47 KB",
2020-06-02 12:16:44 -05:00
"path": "./lib/index.js"
},
{
"path": "./lib/Core.js"
2020-08-21 12:09:58 -05:00
},
{
"path": "./konva.min.js"
2020-06-02 12:16:44 -05:00
}
],
"devDependencies": {
2021-01-26 11:54:37 -05:00
"@size-limit/preset-big-lib": "^4.9.1",
2019-02-06 12:03:53 -05:00
"chai": "4.2.0",
2020-05-06 11:40:08 -05:00
"github-release-from-changelog": "^2.1.1",
2019-10-04 07:46:30 -05:00
"gulp": "^4.0.2",
2016-12-14 12:11:54 -05:00
"gulp-concat": "^2.6.1",
2019-02-06 12:03:53 -05:00
"gulp-connect": "^5.7.0",
2019-10-04 07:46:30 -05:00
"gulp-eslint": "^6.0.0",
2021-01-26 11:54:37 -05:00
"gulp-exec": "^5.0.0",
"gulp-jscpd": "0.0.8",
2020-05-07 16:10:26 -05:00
"gulp-jsdoc3": "^3.0.0",
"gulp-rename": "^2.0.0",
2019-02-06 12:03:53 -05:00
"gulp-replace": "^1.0.0",
2019-04-17 10:45:47 -05:00
"gulp-typescript": "^5.0.1",
2019-04-03 18:08:16 -05:00
"gulp-uglify": "^3.0.2",
2020-06-02 12:16:44 -05:00
"gulp-uglify-es": "^2.0.0",
"gulp-util": "^3.0.8",
2020-05-06 11:40:08 -05:00
"install": "^0.13.0",
2021-01-26 11:54:37 -05:00
"mocha": "8.2.1",
"mocha-headless-chrome": "^3.1.0",
"npm": "^6.14.11",
"prettier": "^2.2.1",
"rollup": "^2.38.0",
2019-10-04 07:46:30 -05:00
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
2021-01-26 11:54:37 -05:00
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.29.0",
"size-limit": "^4.9.1",
"typescript": "^4.1.3"
},
2018-10-24 08:02:06 -05:00
"keywords": [
"canvas",
"animations",
"graphic",
"html5"
],
2018-03-26 21:28:02 -07:00
"prettier": {
"singleQuote": true
},
"browser": {
"canvas": false,
"jsdom": false
},
"bugs": {
2015-01-27 15:25:10 +07:00
"url": "https://github.com/konvajs/konva/issues"
},
2019-02-23 20:54:20 -05:00
"homepage": "http://konvajs.org/",
"readmeFilename": "README.md",
"repository": {
"type": "git",
2015-01-27 15:25:10 +07:00
"url": "git://github.com/konvajs/konva.git"
},
2019-01-01 15:59:27 -05:00
"license": "MIT",
2019-03-19 18:19:40 -05:00
"dependencies": {}
2017-03-20 06:54:31 -05:00
}