konva/package.json

94 lines
2.5 KiB
JSON
Raw Normal View History

{
2015-01-27 15:07:51 +08:00
"name": "konva",
2020-05-08 23:07:49 +08:00
"version": "6.0.0",
2015-01-27 16:25:10 +08:00
"author": "Anton Lavrenov",
2018-10-24 21:02:06 +08:00
"files": [
"README.md",
"konva.js",
"konva.min.js",
2019-01-24 21:46:38 +08:00
"konva.d.ts",
2019-02-27 21:06:04 +08:00
"types",
"lib"
2018-10-24 21:02:06 +08:00
],
2019-02-28 00:18:21 +08:00
"main": "./lib/index.js",
2019-03-07 11:19:32 +08:00
"typings": "./types/index-types.d.ts",
2015-12-22 18:19:19 +08:00
"scripts": {
2019-01-20 10:29:52 +08:00
"start": "npm run watch & gulp",
"lint": "gulp lint",
2019-01-02 04:59:27 +08: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 21:02:06 +08:00
"prettier": "prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote",
2019-02-27 21:06:04 +08:00
"tsc": "tsc -d --declarationDir ./types --removeComments --module CommonJS || echo \"tsc faild for some file(s).\"",
2019-01-02 04:59:27 +08: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-03 01:16:44 +08:00
"watch": "rollup -c -w",
"size": "size-limit"
2015-12-22 18:19:19 +08:00
},
2020-06-03 01:16:44 +08:00
"size-limit": [
{
"limit": "45 KB",
"path": "./lib/index.js"
},
{
"path": "./lib/Core.js"
}
],
"devDependencies": {
2020-06-03 01:16:44 +08:00
"@size-limit/preset-big-lib": "^4.5.0",
2019-02-07 01:03:53 +08:00
"chai": "4.2.0",
2020-05-07 00:40:08 +08:00
"github-release-from-changelog": "^2.1.1",
2019-10-04 20:46:30 +08:00
"gulp": "^4.0.2",
2016-12-15 01:11:54 +08:00
"gulp-concat": "^2.6.1",
2019-02-07 01:03:53 +08:00
"gulp-connect": "^5.7.0",
2019-10-04 20:46:30 +08:00
"gulp-eslint": "^6.0.0",
"gulp-exec": "^4.0.0",
"gulp-jscpd": "0.0.8",
2020-05-08 05:10:26 +08:00
"gulp-jsdoc3": "^3.0.0",
"gulp-rename": "^2.0.0",
2019-02-07 01:03:53 +08:00
"gulp-replace": "^1.0.0",
2019-04-17 23:45:47 +08:00
"gulp-typescript": "^5.0.1",
2019-04-04 07:08:16 +08:00
"gulp-uglify": "^3.0.2",
2020-06-03 01:16:44 +08:00
"gulp-uglify-es": "^2.0.0",
"gulp-util": "^3.0.8",
2020-05-07 00:40:08 +08:00
"install": "^0.13.0",
2020-05-08 05:10:26 +08:00
"mocha": "7.1.2",
"mocha-headless-chrome": "^3.0.0",
2020-05-07 00:40:08 +08:00
"npm": "^6.14.5",
2020-05-08 05:10:26 +08:00
"prettier": "^2.0.5",
"rollup": "^2.8.2",
2019-10-04 20:46:30 +08:00
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
2020-05-08 05:10:26 +08:00
"rollup-plugin-sourcemaps": "^0.6.1",
"rollup-plugin-typescript2": "^0.27.0",
2020-06-03 01:16:44 +08:00
"size-limit": "^4.5.0",
2020-05-08 05:10:26 +08:00
"typescript": "^3.8.3"
},
2018-10-24 21:02:06 +08:00
"keywords": [
"canvas",
"animations",
"graphic",
"html5"
],
2018-03-27 12:28:02 +08:00
"prettier": {
"singleQuote": true
},
"browser": {
"canvas": false,
"jsdom": false
},
"bugs": {
2015-01-27 16:25:10 +08:00
"url": "https://github.com/konvajs/konva/issues"
},
2019-02-24 09:54:20 +08:00
"homepage": "http://konvajs.org/",
"readmeFilename": "README.md",
"repository": {
"type": "git",
2015-01-27 16:25:10 +08:00
"url": "git://github.com/konvajs/konva.git"
},
2019-01-02 04:59:27 +08:00
"license": "MIT",
2019-03-20 07:19:40 +08:00
"dependencies": {}
2017-03-20 19:54:31 +08:00
}