-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
{
"name": "package-name",
"version": "0.1.0",
"description": "Package description here",
"main": "cjs/index.js",
"scripts": {
"prebuild": "yarn clean",
"build": "run-p build:cjs build:esm",
"watch": "run-p 'build:cjs --watch --incremental' 'build:esm --watch'",
"build:cjs": "tsc --outDir cjs --module commonjs",
"build:esm": "rollup -c",
"clean": "rimraf cjs esm",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md,css,scss}\"",
"upgrade-deps": "yarn upgrade-interactive --latest",
"v": "standard-version --preset angular",
"postv": "git push --follow-tags origin master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/username/package-name.git"
},
"keywords": [],
"author": "name",
"license": "ISC",
"bugs": {
"url": "https://github.com/username/package-name/issues"
},
"homepage": "https://github.com/username/package-name#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-typescript": "8.2.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"jest": "27.1.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "2.56.3",
"rollup-plugin-uglify": "6.0.4",
"standard-version": "^9.3.1",
"ts-jest": "27.0.5",
"tslib": "2.3.1",
"typescript": "4.3.5"
}
}