-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 894 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 894 Bytes
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
{
"name": "webpack-kotlin-loader",
"version": "0.3.2",
"description": "Webpack loader that allows importing kotlin files in JS",
"main": "loader.js",
"scripts": {
"compile-simple": "rm -rf examples/simple/dist && webpack --config examples/simple/webpack.config",
"test": "bash ./acceptance-test.sh"
},
"keywords": [
"webpack",
"kotlin",
"loader"
],
"repository": {
"type": "git",
"url": "git+https://github.com/huston007/kotlin-loader.git"
},
"bugs": {
"url": "https://github.com/huston007/kotlin-loader/issues"
},
"homepage": "https://github.com/huston007/kotlin-loader#readme",
"author": "Andrey Skladchikov",
"license": "MIT",
"devDependencies": {
"kotlin": "1.1.0",
"webpack": "^2.4"
},
"engines": {
"node": ">=5.5"
},
"dependencies": {
"loader-utils": "1.0.2",
"source-map-resolve": "0.5.0"
}
}