task-lists-element/package.json

48 строки
1.3 KiB
JSON
Исходник Обычный вид История

2018-04-26 01:58:53 +03:00
{
"name": "@github/task-lists-element",
2019-07-01 18:55:07 +03:00
"version": "1.0.2",
2018-04-26 01:58:53 +03:00
"description": "Drag and drop task list items.",
"repository": "github/task-lists-element",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
2019-06-28 17:50:10 +03:00
"types": "index.d.ts",
2018-04-26 01:58:53 +03:00
"scripts": {
"clean": "rm -rf dist",
2019-02-22 13:48:26 +03:00
"lint": "github-lint",
2018-04-26 01:58:53 +03:00
"prebuild": "npm run clean && npm run lint",
"build": "rollup -c && cp src/task-lists-element.js.flow dist/index.esm.js.flow && cp src/task-lists-element.js.flow dist/index.umd.js.flow",
"pretest": "npm run build",
"test": "karma start test/karma.config.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"task",
"drag-and-drop"
],
"license": "MIT",
"files": [
2019-06-27 14:05:54 +03:00
"dist",
2019-06-28 17:50:10 +03:00
"index.d.ts"
2018-04-26 01:58:53 +03:00
],
"devDependencies": {
2019-06-26 13:00:42 +03:00
"@babel/core": "^7.4.5",
2019-06-26 13:05:39 +03:00
"babel-preset-github": "^3.2.0",
2019-01-08 00:21:52 +03:00
"chai": "^4.2.0",
2019-06-26 13:05:39 +03:00
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-github": "^2.0.0",
"flow-bin": "^0.102.0",
2019-06-26 13:00:42 +03:00
"karma": "^4.1.0",
2018-04-26 01:58:53 +03:00
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
2019-06-26 13:05:39 +03:00
"mocha": "^6.1.4",
2019-06-26 13:00:42 +03:00
"rollup": "^1.16.2",
"rollup-plugin-babel": "^4.3.3"
},
"eslintIgnore": [
"dist/"
]
2018-04-26 01:58:53 +03:00
}