-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 935 Bytes
/
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
{
"name": "opalrb-loader",
"version": "0.1.0",
"description": "Opal Ruby module loader for webpack",
"main": "index.js",
"scripts": {
"start": "babel --watch index.es6.js --out-file index.js",
"build_compiler": "bundle exec opal --no-exit -c compiler.rb | uglifyjs > vendor/opal-compiler.js",
"test": "mocha",
"prepare": "npm run build_compiler; babel index.es6.js --out-file index.js; npm test",
"prepublish": "npm run prepare"
},
"author": "David Chang",
"keywords": [
"webpack",
"loader",
"opal",
"ruby",
"transpiler",
"module"
],
"license": "MIT",
"dependencies": {
"bundle-loader": "^0.5.4",
"exports-loader": "^0.6.2",
"glob": "^5.0.14",
"imports-loader": "^0.6.4",
"loader-utils": "^0.2.11",
"source-map": "^0.4.4"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.6.0",
"uglifyjs": "^2.4.1"
}
}