-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "@js-factory/perf-budget-webpack-plugin",
"version": "1.2.0",
"description": "Webpack plugin to set budget on individual file",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest",
"test-only": "jest",
"test:watch": "jest --watch"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"*.js",
"utils/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/js-factory/PerfBudgetWebpackPlugin.git"
},
"keywords": [
"webpack",
"plugin",
"performance-budget"
],
"author": "js-factory",
"license": "MIT",
"bugs": {
"url": "https://github.com/js-factory/PerfBudgetWebpackPlugin/issues"
},
"homepage": "https://github.com/js-factory/PerfBudgetWebpackPlugin#readme",
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"jest": "^23.4.0"
},
"dependencies": {
"braces": "^3.0.2",
"handlebars": "^4.1.2",
"js-yaml": "^3.13.1"
}
}