This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 3.2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "parcel-plugin-structurize",
"version": "2.4.4",
"description": "A Parcel plugin that lets you customize your output (dist) directory structure.",
"author": "Samrith Shankar <[email protected]> (https://twitter.com/tueieo)",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/src/index.d.ts",
"files": [
"lib",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/samrith-s/parcel-plugin-structurize.git"
},
"bugs": {
"url": "https://github.com/samrith-s/parcel-plugin-structurize/issues"
},
"homepage": "https://github.com/samrith-s/parcel-plugin-structurize#readme",
"engines": {
"node": ">=12"
},
"keywords": [
"parcel",
"plugin",
"structure",
"build",
"folders",
"assets",
"dist",
"output",
"outDir"
],
"scripts": {
"bootstrap": "./scripts/prepare-bundles.sh",
"bootstrap:test": "./scripts/prepare-test.sh",
"prepublishOnly": "yarn build:prod",
"lint": "eslint --fix-dry-run src/**/*.ts",
"build": "rimraf lib && rollup -c",
"build:prod": "NODE_ENV=production yarn build",
"build:dev": "NODE_ENV=development yarn build",
"dev": "rimraf lib && NODE_ENV=development rollup -c -w",
"test:pre": "yarn --cwd ./__tests__/bundle build",
"test": "yarn test:pre && jest --coverage",
"test:bundle": "./scripts/test-bundle.sh",
"test:watch": "yarn test:pre && jest --coverage --watch",
"release": "standard-version"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/cosmiconfig": "^6.0.0",
"@types/delete-empty": "^3.0.0",
"@types/jest": "^26.0.10",
"@types/jsdom": "^16.2.3",
"@types/node": "^14.6.0",
"@types/parcel-bundler": "^1.12.1",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-jest": "^26.3.0",
"builtin-modules": "^3.1.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.1",
"jest-environment-node": "^26.3.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.16.4",
"rimraf": "^3.0.2",
"rollup": "^2.26.3",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"peerDependencies": {
"parcel-bundler": "^1.0.0"
},
"dependencies": {
"chalk": "^4.1.0",
"cosmiconfig": "^7.0.0",
"delete-empty": "^3.0.0",
"minimatch": "^3.0.4",
"move-file": "^2.0.0",
"sanitize-filename": "^1.6.3"
}
}