-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 2.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "rollup-plugin-bundle-imports",
"version": "1.5.1",
"description": "Bundle imports separately and use the result as a file path or a string of code.",
"repository": "bumble-org/rollup-plugin-bundle-imports",
"license": "MIT",
"author": "Jack and Amy Steam <[email protected]>",
"files": [
"lib/*.js",
"lib/*.js.map",
"types/*.d.ts"
],
"main": "lib/index-cjs.js",
"module": "lib/index-esm.js",
"types": "types/index.d.ts",
"scripts": {
"build": "run-p build:dev",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:pro": "rollup -c --environment NODE_ENV:production",
"build:types": "tsc -p tsconfig.d.json",
"build:watch": "npm run build:dev -- -w",
"format": "run-s format:*",
"format:package": "sort-package-json && git add package.json",
"format:staged": "pretty-quick --staged",
"release": "git push && npm publish",
"start": "run-p build:watch",
"test": "jest",
"test:e2e": "jest e2e",
"test:quick": "jest --testPathIgnorePatterns=e2e",
"preversion": "run-s build:pro build:types",
"postversion": "run-s release"
},
"husky": {
"hooks": {
"pre-commit": "run-s format"
}
},
"dependencies": {
"rollup-pluginutils": "^2.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@sucrase/jest-plugin": "^2.0.0",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dedupe": "^3.0.1",
"eslint": "^7.32.0",
"husky": "^3.0.4",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rollup": "^2.58.0",
"rollup-plugin-typescript": "^1.0.1",
"sort-package-json": "^1.22.1",
"sucrase": "^3.10.1",
"ts-jest": "^26.5.6",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"rollup": "^1.20.1 || ^2.0.0"
}
}