Skip to content

Commit a20eac8

Browse files
committed
Be less strict in the version of webpack required as the peer dependency. Resolves #12
1 parent 2aa9625 commit a20eac8

File tree

1 file changed

+54
-54
lines changed

1 file changed

+54
-54
lines changed

package.json

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,56 @@
11
{
2-
"name": "pegjs-loader",
3-
"version": "0.5.1",
4-
"description": "PEG.js loader for webpack",
5-
"authors": [
6-
"Andrey Subbotin <andrey@subbotin.me> (https://github.com/eploko)",
7-
"Victor Homyakov (https://github.com/victor-homyakov)"
8-
],
9-
"license": "MIT",
10-
"main": "lib/index.js",
11-
"jsnext:main": "src/index.js",
12-
"repository": {
13-
"type": "git",
14-
"url": "https://github.com/eploko/pegjs-loader"
15-
},
16-
"keywords": [
17-
"webpack",
18-
"pegjs",
19-
"peg.js",
20-
"peg",
21-
"loader"
22-
],
23-
"bugs": {
24-
"url": "https://github.com/eploko/pegjs-loader/issues"
25-
},
26-
"homepage": "http://eploko.github.io/pegjs-loader",
27-
"peerDependencies": {
28-
"pegjs": "^0.10.0",
29-
"webpack": "1 || 2 || ^2.1.0-beta || ^2.2.0-rc"
30-
},
31-
"dependencies": {
32-
"loader-utils": "^0.2.5"
33-
},
34-
"devDependencies": {
35-
"babel": "^5.5.8",
36-
"babel-core": "^5.6.18",
37-
"babel-eslint": "^4.1.0",
38-
"babel-loader": "^5.1.4",
39-
"eslint": "^1.7.1",
40-
"eslint-config-airbnb": "^0.1.0",
41-
"eslint-plugin-react": "^3.6.3",
42-
"rimraf": "^2.3.4",
43-
"webpack": "1.12.2"
44-
},
45-
"scripts": {
46-
"clean": "rimraf lib",
47-
"lint": "eslint src",
48-
"check": "npm run lint",
49-
"build:lib": "babel src --out-dir lib",
50-
"build": "npm run build:lib",
51-
"preversion": "npm run clean && npm run check",
52-
"version": "npm run build",
53-
"postversion": "git push && git push --tags && npm run clean",
54-
"prepublish": "npm run clean && npm run build"
55-
}
2+
"name": "pegjs-loader",
3+
"version": "0.5.1",
4+
"description": "PEG.js loader for webpack",
5+
"authors": [
6+
"Andrey Subbotin <andrey@subbotin.me> (https://github.com/eploko)",
7+
"Victor Homyakov (https://github.com/victor-homyakov)"
8+
],
9+
"license": "MIT",
10+
"main": "lib/index.js",
11+
"jsnext:main": "src/index.js",
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/eploko/pegjs-loader"
15+
},
16+
"keywords": [
17+
"webpack",
18+
"pegjs",
19+
"peg.js",
20+
"peg",
21+
"loader"
22+
],
23+
"bugs": {
24+
"url": "https://github.com/eploko/pegjs-loader/issues"
25+
},
26+
"homepage": "http://eploko.github.io/pegjs-loader",
27+
"peerDependencies": {
28+
"pegjs": "^0.10.0",
29+
"webpack": "> 1"
30+
},
31+
"dependencies": {
32+
"loader-utils": "^0.2.5"
33+
},
34+
"devDependencies": {
35+
"babel": "^5.5.8",
36+
"babel-core": "^5.6.18",
37+
"babel-eslint": "^4.1.0",
38+
"babel-loader": "^5.1.4",
39+
"eslint": "^1.7.1",
40+
"eslint-config-airbnb": "^0.1.0",
41+
"eslint-plugin-react": "^3.6.3",
42+
"rimraf": "^2.3.4",
43+
"webpack": "1.12.2"
44+
},
45+
"scripts": {
46+
"clean": "rimraf lib",
47+
"lint": "eslint src",
48+
"check": "npm run lint",
49+
"build:lib": "babel src --out-dir lib",
50+
"build": "npm run build:lib",
51+
"preversion": "npm run clean && npm run check",
52+
"version": "npm run build",
53+
"postversion": "git push && git push --tags && npm run clean",
54+
"prepublish": "npm run clean && npm run build"
55+
}
5656
}

0 commit comments

Comments
 (0)