forked from babel/babel-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "babel-loader",
"version": "6.2.4",
"description": "babel module loader for webpack",
"files": [
"index.js",
"lib"
],
"dependencies": {
"loader-utils": "^0.2.11",
"mkdirp": "^0.5.1",
"object-assign": "^4.0.1"
},
"peerDependencies": {
"babel-core": "^6.0.0",
"webpack": "1 || ^2.1.0-beta"
},
"devDependencies": {
"expect.js": "^0.3.1",
"istanbul": "^0.4.0",
"jscs": "^2.5.0",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"rimraf": "^2.4.3",
"webpack": "^1.12.2"
},
"scripts": {
"test": "npm run hint && npm run cs && npm run cov",
"cov": "istanbul cover ./node_modules/.bin/_mocha -- test/*.test.js",
"hint": "jshint --config .jshintrc index.js lib/* test/*",
"cs": "jscs --config .jscsrc index.js lib/* test/*"
},
"repository": {
"type": "git",
"url": "https://github.com/babel/babel-loader.git"
},
"keywords": [
"webpack",
"loader",
"6to5",
"babel",
"es6",
"transpiler",
"module"
],
"author": "Luis Couto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/babel/babel-loader/issues"
},
"homepage": "https://github.com/babel/babel-loader"
}