Files
konva/package.json

52 lines
1.3 KiB
JSON
Raw Normal View History

{
2015-01-27 00:07:51 -07:00
"name": "konva",
2018-03-16 08:56:13 +07:00
"version": "2.0.2",
2015-01-27 15:25:10 +07:00
"author": "Anton Lavrenov",
2018-03-26 21:28:02 -07:00
"files": ["README.md", "konva.js", "konva.min.js", "src", "konva.d.ts"],
2016-05-06 14:10:50 +07:00
"main": "konva.js",
"typings": "./konva.d.ts",
2015-12-22 17:19:19 +07:00
"scripts": {
"start": "gulp",
"lint": "gulp lint",
2016-05-06 14:32:10 +07:00
"build": "gulp build",
2016-02-28 16:57:15 +08:00
"full-build": "gulp lint test build",
"test": "gulp test",
2018-03-26 21:28:02 -07:00
"prettier":
"prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote"
2015-12-22 17:19:19 +07:00
},
"devDependencies": {
2017-12-21 09:57:16 +07:00
"chai": "4.1.2",
2016-12-14 12:11:54 -05: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",
"gulp-jsdoc3": "^1.0.1",
2017-12-21 09:57:16 +07:00
"gulp-mocha-phantomjs": "^0.12.2",
2015-08-28 10:11:10 +07:00
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
2017-12-21 09:57:16 +07:00
"mocha": "4.0.1",
"prettier": "^1.9.2"
},
2018-03-26 21:28:02 -07:00
"keywords": ["canvas", "animations", "graphic", "html5"],
"prettier": {
"singleQuote": true
},
"browser": {
"canvas": false,
"jsdom": false
},
"bugs": {
2015-01-27 15:25:10 +07:00
"url": "https://github.com/konvajs/konva/issues"
},
2015-02-09 08:03:27 +07:00
"homepage": "http://konvajs.github.io/",
"readmeFilename": "README.md",
"repository": {
"type": "git",
2015-01-27 15:25:10 +07:00
"url": "git://github.com/konvajs/konva.git"
},
2017-10-19 15:15:28 +05:30
"license": "MIT"
2017-03-20 06:54:31 -05:00
}