draggable/package.json
2023-09-22 12:32:09 -07:00

87 lines
2.8 KiB
JSON

{
"name": "@shopify/draggable",
"version": "1.0.0-beta.13",
"private": false,
"license": "MIT",
"description": "The JavaScript Drag & Drop library your grandparents warned you about.",
"author": "Shopify <dev@shopify.com>",
"homepage": "https://github.com/Shopify/draggable#readme",
"repository": "https://github.com/Shopify/draggable",
"contributors": [
{
"name": "Max Hoffmann",
"email": "max.hoffmann@shopify.com"
}
],
"bugs": {
"url": "https://github.com/Shopify/draggable/issues"
},
"keywords": [
"shopify",
"draggable",
"drag-and-drop",
"es6"
],
"main": "./lib/draggable.bundle.js",
"types": "./index.d.ts",
"scripts": {
"start": "concurrently \"yarn watch\" \"cd examples && yarn && yarn start\"",
"build": "yarn build:production",
"watch": "ts-node --project='./scripts/tsconfig.json' ./scripts/watch.ts",
"release": "yarn run build:production && changeset publish",
"lint": "eslint ./src ./scripts ./test --max-warnings 0",
"type-check": "tsc --noEmit",
"type-check:scripts": "tsc --noEmit --project scripts",
"esdoc": "esdoc -c esdoc.json",
"test": "jest",
"test-ci": "jest --coverage && codecov",
"build:development": "ts-node --project='./scripts/tsconfig.json' ./scripts/build.ts",
"build:production": "ts-node --project='./scripts/tsconfig.json' ./scripts/build.ts --production",
"verify": "yarn lint && yarn type-check && yarn type-check:scripts && yarn build && yarn test"
},
"files": [
"lib/**/*.js",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.22.20",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@microsoft/tsdoc": "^0.14.2",
"@shopify/babel-preset": "^25.0.0",
"@shopify/eslint-plugin": "^43.0.0",
"@shopify/prettier-config": "^1.1.2",
"@shopify/typescript-configs": "^5.1.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@types/webpack": "^5.28.2",
"@types/webpack-bundle-analyzer": "^4.6.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-preset-shopify": "^21.0.0",
"codecov": "^3.0.2",
"concurrently": "^3.5.1",
"core-js": "^3.32.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^8.49.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"timers": "^0.1.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4"
},
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
}
}