-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
66
67
68
{
"name": "perfume-webpack-plugin",
"version": "1.0.3",
"description": "A Webpack plugin to perfume.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage --no-cache",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "webpack && tsc",
"build:dev": "webpack -w && tsc -w",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"perfume.js",
"performance-metrics",
"webpack-plugin",
"web-performance"
],
"author": "evanzhou",
"license": "MIT",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/zy308718320/perfume-webpack-plugin.git"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"acorn": "^7.1.1",
"acorn-walk": "^7.0.0",
"escodegen": "^1.14.1",
"fingerprintjs2": "^2.1.0",
"lodash": "^4.17.15",
"perfume.js": "^4.8.0",
"webpack": "^4.41.5"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/escodegen": "0.0.6",
"@types/estree": "0.0.42",
"@types/fingerprintjs2": "^2.0.0",
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.149",
"@types/webpack": "^4.41.5",
"babel-loader": "^8.1.0",
"coveralls": "^3.0.9",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5",
"webpack-cli": "^4.0.0-beta.2",
"worker-loader": "^2.0.0"
}
}