-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
{
"name": "pegjs-loader",
"version": "0.5.8",
"description": "PEG.js loader for webpack",
"authors": [
"Andrey Subbotin <[email protected]> (https://github.com/eploko)",
"Victor Homyakov (https://github.com/victor-homyakov)"
],
"license": "MIT",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/eploko/pegjs-loader"
},
"keywords": [
"webpack",
"pegjs",
"peg.js",
"peg",
"loader"
],
"bugs": {
"url": "https://github.com/eploko/pegjs-loader/issues"
},
"homepage": "http://eploko.github.io/pegjs-loader",
"peerDependencies": {
"pegjs": "^0.10.0",
"webpack": ">=1"
},
"dependencies": {
"loader-utils": "^1.4.2"
},
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.6.18",
"babel-eslint": "^4.1.0",
"babel-loader": "^5.1.4",
"eslint": "~> 4.18.2",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"lodash": ">=4.17.12",
"pegjs": "^0.10.0",
"rimraf": "^2.3.4",
"webpack": "1.12.2"
},
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src",
"check": "npm run lint",
"build:lib": "babel src --out-dir lib",
"build": "npm run build:lib",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build"
}
}