1 | {
|
2 | "name": "rollup-plugin-bundle-inject",
|
3 | "version": "1.0.2",
|
4 | "description": "Inject JS or CSS bundle into a template where necessary",
|
5 | "main": "dist/index.js",
|
6 | "files": ["README.md", "package.json", "dist/"],
|
7 | "scripts": {
|
8 | "start": "tsc --watch",
|
9 | "build": "sh bin/build.sh",
|
10 | "test": "mocha \"**/*.test.ts\" --colors --config ./.mocharc.js",
|
11 | "test:watch": "npm run test -- --watch",
|
12 | "prettier": "prettier --write .",
|
13 | "prettier:watch": "onchange \"./**/*\" -- prettier --write --ignore-unknown {{changed}}"
|
14 | },
|
15 | "keywords": [
|
16 | "rollup",
|
17 | "rollup plugin",
|
18 | "rollup inject",
|
19 | "rollup bundle",
|
20 | "bundle inject"
|
21 | ],
|
22 | "author": "Jacket Chen <342115615@qq.com>",
|
23 | "license": "ISC",
|
24 | "dependencies": {
|
25 | "html-minifier": "^4.0.0"
|
26 | },
|
27 | "devDependencies": {
|
28 | "@types/chai": "^4.2.12",
|
29 | "@types/mocha": "^8.0.3",
|
30 | "@types/node": "^14.11.2",
|
31 | "chai": "^4.2.0",
|
32 | "mocha": "^8.1.3",
|
33 | "onchange": "^7.0.2",
|
34 | "prettier": "^2.1.2",
|
35 | "rollup": "^2.28.2",
|
36 | "rollup-plugin-postcss": "^3.1.8",
|
37 | "ts-node": "^9.0.0",
|
38 | "tslib": "^2.0.1",
|
39 | "typescript": "^4.0.3",
|
40 | "uglify-js": "^3.11.1"
|
41 | },
|
42 | "repository": {
|
43 | "type": "git",
|
44 | "url": "git@github.com:chenjuneking/rollup-plugin-bundle-inject.git"
|
45 | },
|
46 | "bugs": {
|
47 | "url": "https://github.com/chenjuneking/rollup-plugin-bundle-inject/issues"
|
48 | }
|
49 | }
|