UNPKG

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