-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 739 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 739 Bytes
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
{
"name": "tinypack",
"version": "0.0.1",
"description": "module bundle all things",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"demo-build": "cd demo && node ../bin/index.js ./src/index.js"
},
"files": [
"bin",
"types",
"lib"
],
"bin": {
"tinypack": "bin/index.js"
},
"keywords": [
"tiny",
"pack",
"bundle"
],
"author": "zeus",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.2",
"jest": "^27.0.6",
"typescript": "^4.3.5"
},
"dependencies": {
"postcss": "^8.3.6"
}
}