-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
77 lines (77 loc) · 1.99 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
69
70
71
72
73
74
75
76
77
{
"name": "polymer-webpack-loader",
"version": "3.1.0",
"description": "WebPack Loader for Polymer Web Components",
"main": "src/index.js",
"scripts": {
"test": "jest",
"webpack-defaults": "webpack-defaults",
"start": "npm run build -- -w",
"appveyor:test": "npm run test",
"lint": "eslint --cache src test *.js",
"lint-staged": "lint-staged",
"release": "standard-version",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"travis:lint": "npm run lint",
"travis:test": "npm run test -- --runInBand",
"travis:coverage": "npm run test:coverage -- --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpack-contrib/polymer-webpack-loader.git"
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/webpack-contrib/polymer-webpack-loader/issues"
},
"homepage": "https://github.com/webpack-contrib/polymer-webpack-loader#readme",
"dependencies": {
"acorn": "8.x",
"acorn-walk": "8.x",
"css-selector-tokenizer": "^0.7.0",
"escodegen": "^1.12.0",
"html-loader": "^0.5.1",
"loader-utils": "^1.1.0",
"postcss": "8.x",
"source-map": "^0.8.0-beta.0"
},
"devDependencies": {
"@webpack-contrib/defaults": "6.x",
"cross-env": "^5.0.1",
"del-cli": "4.x",
"eslint": "7.x",
"eslint-config-webpack": "1.x",
"eslint-plugin-import": "2.x",
"jest": "26.x",
"lint-staged": "^4.0.1",
"pre-commit": "^1.2.2",
"standard-version": "9.x",
"webpack": "4.x"
},
"resolutions": {
"glob-parent": "^5.1.2",
"node-forge": "^1.3.0"
},
"files": [
"src"
],
"engines": {
"node": ">= 8.0"
},
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}