UNPKG

984 BJSONView Raw
1{
2 "name": "rollup-plugin-hashbang",
3 "version": "2.2.1",
4 "description": "Preserve hashbang and make output file executable.",
5 "repository": {
6 "url": "egoist/rollup-plugin-hashbang",
7 "type": "git"
8 },
9 "main": "dist/index.js",
10 "files": [
11 "dist"
12 ],
13 "scripts": {
14 "test": "npm run lint && jest",
15 "lint": "xo",
16 "build": "rollup -c",
17 "prepublishOnly": "npm run build"
18 },
19 "author": "egoist <0x142857@gmail.com>",
20 "license": "MIT",
21 "jest": {
22 "testEnvironment": "node"
23 },
24 "dependencies": {
25 "magic-string": "^0.22.4"
26 },
27 "devDependencies": {
28 "babel-jest": "^22.0.4",
29 "babel-preset-env": "^1.6.1",
30 "eslint-config-rem": "^3.0.0",
31 "executable": "^4.1.0",
32 "fs-extra": "^5.0.0",
33 "jest": "^22.0.4",
34 "rollup": "^1.1.2",
35 "xo": "^0.18.0"
36 },
37 "xo": {
38 "extends": "rem",
39 "envs": [
40 "jest"
41 ]
42 },
43 "babel": {
44 "presets": [
45 "env"
46 ]
47 },
48 "engines": {
49 "node": ">=8"
50 }
51}