-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "example-typescript-package",
"version": "0.0.3",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node cleanup",
"package": "npm run build && npm pack",
"test": "jest",
"test:cov": "jest --coverage"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"example",
"typescript",
"npm",
"package",
"sample",
"boilerplate",
"starter",
"demo",
"cjs",
"esm",
"umd"
],
"author": "Tom Chen <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/tomchen/example-typescript-package",
"repository": {
"type": "git",
"url": "[email protected]:tomchen/example-typescript-package.git"
},
"bugs": {
"url": "https://github.com/tomchen/example-typescript-package/issues"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.3.0"
}
}