-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 878 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 878 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
{
"name": "fe-tools-node-utils",
"version": "0.0.9",
"description": "FrontEnd tools, Nodejs utils functions.",
"author": "Wayne <michealwayne@163.com>",
"license": "ISC",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json"
},
"devDependencies": {},
"dependencies": {
"minimist": "^1.2.8",
"@types/minimist": "^1.2.2"
}
}