-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.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": "cpuprofile-webpack-plugin",
"version": "1.10.3",
"description": "cpuprofile-webpack-plugin",
"scripts": {
"commit": "git-cz",
"release": "npm-run-all lint release:create-release",
"release:create-release": "npx standard-version",
"build": "npm-run-all pretty-quick build:*",
"build:frontend": "npx lerna exec npm run build",
"build:copy-frontend": "cpy packages/cpuprofile-viewer/dist/production.html ./",
"prettier": "prettier --write \"**/*.*(js|ts|tsx)\"",
"lint": "prettier --list-different \"**/*.*(js|ts|tsx)\"",
"pretty-quick": "pretty-quick --pattern \"**/*.js\" --pattern \"packages/**/*.ts\" --pattern \"packages/**/*.tsx\"",
"prepare": "npx lerna bootstrap",
"prepublishOnly": "npm run build"
},
"dependencies": {
"sync-cpuprofiler": "1.1.3"
},
"peerDependencies": {
"webpack": ">=4.28.3"
},
"devDependencies": {
"commitizen": "3.0.5",
"cpy-cli": "2.0.0",
"cz-conventional-changelog": "2.1.0",
"npm-run-all": "4.1.5",
"prettier": "1.15.3",
"pretty-quick": "1.10.0",
"webpack": "4.28.3"
},
"files": [
"lib/",
"index.js",
"production.html"
],
"main": "./index.js",
"author": "Jan Nicklas",
"license": "MIT",
"repository": "jantimon/cpuprofile-webpack-plugin",
"homepage": "https://github.com/jantimon/cpuprofile-webpack-plugin#cpuprofile-webpack-plugin",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}