konva/package.json

77 lines
1.9 KiB
JSON
Raw Normal View History

{
2015-01-27 15:07:51 +08:00
"name": "konva",
2019-01-24 21:45:17 +08:00
"version": "2.6.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",
"src",
"konva.d.ts"
],
2016-05-06 15:10:50 +08:00
"main": "konva.js",
2019-01-02 04:59:27 +08:00
"module": "konva.esm.js",
2016-05-06 15:10:50 +08:00
"typings": "./konva.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",
2018-10-24 21:02:06 +08:00
"test": "mocha-headless-chrome -f ./test/runner.html -a disable-web-security",
"prettier": "prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote",
2019-01-22 06:42:02 +08:00
"tsc": "tsc -d --declarationDir ./types --removeComments --noEmit || echo \"tsc faild for some file(s).\"",
2019-01-02 04:59:27 +08:00
"rollup": "rollup -c",
2019-01-20 10:29:52 +08:00
"compile": "npm run tsc && npm run rollup",
"watch": "rollup -c -w"
2015-12-22 18:19:19 +08:00
},
"devDependencies": {
2017-12-21 10:57:16 +08:00
"chai": "4.1.2",
2016-12-15 01:11:54 +08:00
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.0.0",
"gulp-eslint": "^4.0.0",
"gulp-jscpd": "0.0.8",
2019-01-06 16:01:20 +08:00
"gulp-jsdoc3": "^2.0.0",
2015-08-28 11:11:10 +08:00
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
2017-12-21 10:57:16 +08:00
"mocha": "4.0.1",
"mocha-headless-chrome": "^2.0.0",
2019-01-06 16:01:20 +08:00
"prettier": "^1.9.2",
"typescript": "^3.1.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"
},
2015-02-09 09:03:27 +08:00
"homepage": "http://konvajs.github.io/",
"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",
"dependencies": {
"gulp-exec": "^3.0.2",
"gulp-typescript": "^5.0.0",
"rollup": "^0.68.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.18.1"
}
2017-03-20 19:54:31 +08:00
}