-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.27 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@walrus/pansy",
"version": "0.3.0",
"description": "A zero configuration library bundler.",
"main": "dist/index.js",
"bin": {
"pansy": "dist/cli.js"
},
"types": "types/index.d.ts",
"files": [
"dist",
"types",
"babel.js"
],
"scripts": {
"bootstrap": "yarn || npm i",
"types": "tsc --build tsconfig.types.json",
"build": "node lib/cli",
"test": "yarn test:unit",
"test:cov": "yarn test:unit --coverage",
"test:unit": "cd test/fixtures && yarn && cd ../../ && walrus test",
"lint": "walrus lint",
"lint:commit": "walrus commitlint --env HUSKY_GIT_PARAMS",
"prettier": "walrus prettier",
"docs:start": "cd ./website && yarn start",
"docs:build": "cd ./website && yarn build",
"prepublishOnly": "yarn types && yarn build && rm -rf dist/src dist/test"
},
"repository": "[email protected]:walrus-plus/pansy.git",
"author": "Walrus Team",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@pansy/utils": "^0.3.6",
"@rollup/plugin-alias": "^3.0.0",
"@rollup/plugin-buble": "^0.21.0",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-replace": "^2.3.0",
"@rollup/plugin-strip": "^1.3.1",
"@rollup/plugin-url": "^4.0.0",
"@svgr/rollup": "^5.0.1",
"@walrus/shared-utils": "^0.4.1",
"autoprefixer": "^9.7.3",
"babel-plugin-alter-object-assign": "^1.0.2",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"less": "^3.10.3",
"less-plugin-npm-import": "^2.1.0",
"ora": "^4.0.3",
"postcss": "^7.0.26",
"rollup": "^1.28.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-hashbang": "^2.2.2",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^3.7.4"
},
"devDependencies": {
"@types/autoprefixer": "^9.6.1",
"@types/node": "^13.1.4",
"@types/pify": "^3.0.2",
"@types/resolve": "^1.14.0",
"@types/rimraf": "^2.0.3",
"@types/signale": "^1.2.1",
"@types/vfile-message": "^2.0.0",
"@walrus/cli": "^0.4.1",
"boxen": "^4.2.0",
"builtin-modules": "^3.1.0",
"cac": "^6.5.3",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"gzip-size": "^5.1.1",
"husky": "^3.1.0",
"majestic": "^1.6.1",
"p-waterfall": "^2.1.0",
"pify": "^4.0.1",
"pretty-bytes": "^5.3.0",
"pretty-ms": "^5.1.0",
"require-so-slow": "^1.2.0",
"resolve": "^1.14.1",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.0",
"slash": "^3.0.0",
"string-width": "^4.2.0",
"stringify-author": "^0.1.3",
"text-table": "^0.2.0",
"v8-compile-cache": "^2.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier",
"commit-msg": "yarn lint:commit"
}
},
"browserslist": [
"node 8"
],
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
}
}