|
1 | 1 | { |
2 | 2 | "name": "pegjs-loader", |
3 | | - "version": "0.1.1", |
| 3 | + "version": "0.2.0", |
4 | 4 | "description": "PEG.js loader for webpack", |
5 | | - "main": "index.js", |
6 | | - "dependencies": { |
7 | | - "loader-utils": "^0.2.2", |
8 | | - "pegjs": "^0.8.0" |
9 | | - }, |
10 | | - "scripts": { |
11 | | - "test": "echo \"Error: no test specified\" && exit 1" |
12 | | - }, |
| 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", |
13 | 12 | "repository": { |
14 | 13 | "type": "git", |
15 | 14 | "url": "https://github.com/eploko/pegjs-loader" |
|
21 | 20 | "peg", |
22 | 21 | "loader" |
23 | 22 | ], |
24 | | - "author": "Andrey Subbotin", |
25 | | - "license": "MIT" |
| 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.8.0", |
| 29 | + "webpack": "^1.12.2" |
| 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 | + } |
26 | 56 | } |
0 commit comments