Files
rocket/packages/launch/package.json
github-actions[bot] d034f799c0 Version Packages
2021-05-17 21:56:56 +02:00

42 lines
1.1 KiB
JSON

{
"name": "@rocket/launch",
"version": "0.5.0",
"publishConfig": {
"access": "public"
},
"description": "Launch Preset for Rocket",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/modernweb-dev/rocket.git",
"directory": "packages/launch"
},
"author": "Modern Web <hello@modern-web.dev> (https://modern-web.dev/)",
"homepage": "https://rocket.modern-web.dev/docs/presets/launch/",
"main": "index.js",
"type": "module",
"exports": {
".": "./index.js",
"./preset/": "./preset/",
"./inline-notification": "./inline-notification/index.js",
"./inline-notification/inline-notification.js": "./inline-notification/inline-notification.js"
},
"scripts": {
"test": "mocha --timeout 5000 test-node/**/*.test.{js,cjs} test-node/*.test.{js,cjs}",
"test:watch": "onchange 'src/**/*.{js,cjs}' 'test-node/**/*.{js,cjs}' -- npm test"
},
"files": [
"*.js",
"inline-notification",
"preset"
],
"keywords": [
"rocket",
"preset"
],
"dependencies": {
"@rocket/drawer": "^0.1.3",
"@rocket/navigation": "^0.2.1"
}
}