forked from zetachang/opalrb-loader
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
61
62
63
64
65
66
67
68
69
{
"name": "opal-webpack",
"version": "1.0.9",
"description": "Opal Ruby module loader for webpack",
"main": "index.js",
"files": [
"index.js",
"lib",
"vendor"
],
"scripts": {
"build_compiler": "opal --no-exit -ghike --no-opal -Ilib -c lib/compiler.rb | uglifyjs > vendor/opal-compiler.js",
"build_runtime": "echo '' | opal --no-exit -c | uglifyjs > vendor/opal-runtime.js",
"test": "npm run test_only -- test/unit test/integration -i -g watch2",
"test2": "npm run test_only -- test/integration -g watch2",
"test_only": "PATH=test/support:$PATH OPAL_USE_BUNDLER=false OPAL_LOAD_PATH=./tmp/fixtures:./tmp/fixtures/load_path mocha",
"prepare": "npm run build_compiler && npm run build_runtime",
"prepublish": "npm run prepare",
"eslint": "eslint index.js lib test",
"jshint": "jshint index.js lib/*.js test/**/*.js"
},
"author": "CJ Lazell",
"contributors": [
{
"name": "David Chang",
"name": "Brady Wied"
}
],
"keywords": [
"webpack",
"loader",
"opal",
"ruby",
"transpiler",
"module"
],
"license": "MIT",
"homepage": "https://github.com/cj/opal-webpack",
"repository": {
"type": "git",
"url": "git+https://github.com/cj/opal-webpack.git"
},
"bugs": {
"url": "https://github.com/cj/opal-webpack/issues"
},
"dependencies": {
"bundle-loader": "^0.5.4",
"exports-loader": "^0.6.2",
"imports-loader": "^0.6.4",
"loader-utils": "^0.2.11",
"source-map": "^0.4.4",
"mkdirp": "^0.5.1",
"glob": "^5.0.14"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.7.0",
"fs-extra": "^0.26.7",
"jshint": "^2.9.1",
"left-pad": "^1.0.1",
"mocha": "^2.4.5",
"object-assign": "^4.0.1",
"phantomjs-prebuilt": "^2.1.7",
"rimraf": "^2.5.2",
"source-map-support": "^0.4.0",
"uglifyjs": "^2.4.1",
"webpack": "^1.12.14"
}
}