-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.29 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
{
"name": "packager-monorepo",
"private": true,
"description": "Browser-based trans-bundler.",
"cdnjs": "dist/index.browser.js",
"unpkg": "dist/index.browser.js",
"jsdelivr": "dist/index.browser.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Adrian Barylski",
"license": "MIT",
"workspaces": [
"packages/core",
"packages/plugin-coffeescript",
"packages/plugin-commonjs",
"packages/plugin-css",
"packages/plugin-json",
"packages/plugin-less",
"packages/plugin-sass",
"packages/plugin-stylus",
"packages/plugin-svelte",
"packages/plugin-typescript",
"packages/plugin-vue",
"packages/shared"
],
"scripts": {
"dev": "yarn workspaces run dev",
"build": "yarn workspaces run build",
"build-prod": "NODE_ENV=production yarn build",
"test": "yarn workspaces run test",
"format": "yarn workspaces run format",
"lint": "yarn workspaces run lint",
"upgrade-packager-deps": "yarn workspaces run upgrade-packager-deps",
"update-version": "yarn workspaces run update-version",
"commit": "yarn format && yarn test && yarn build-prod && yarn upgrade-packager-deps && git add --all && git-cz",
"npm:publish": "npm login && yarn workspaces run npm:publish"
},
"dependencies": {
"estree-walker": "^1.0.1",
"rollup": "^1.31.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-typescript": "^2.1.0",
"@types/acorn": "^4.0.5",
"@types/jest": "^24.9.0",
"cz-conventional-changelog": "3.1.0",
"husky": "^4.2.3",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rollup-plugin-dts": "^1.2.1",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-web-worker-loader": "^0.8.1",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}