-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1 KB
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
{
"name": "es6-loader",
"version": "0.2.0",
"description": "ES6 module loader for webpack",
"main": "index.js",
"scripts": {
"test": "webpack-dev-server --config test/webpack.config.js"
},
"author": {
"name": "Kyle Robinson Young",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/shama/es6-loader.git"
},
"bugs": {
"url": "https://github.com/shama/es6-loader/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/shama/es6-loader/blob/master/LICENSE-MIT"
}
],
"dependencies": {
"loader-utils": "~0.2.1",
"es6-transpiler": "~0.7.13-5",
"es6-module-transpiler": "~0.4.0",
"extend": "~1.2.1"
},
"devDependencies": {
"webpack-dev-server": "~0.11.0",
"should": "~2.0.2",
"mocha": "~1.14.0",
"mocha-loader": "~0.6.3"
},
"keywords": [
"webpack",
"loader",
"es6",
"module",
"transpiler"
],
"files": [
"index.js",
"LICENSE-MIT"
]
}