-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
82 lines (82 loc) · 2.58 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"devDependencies": {
"benchmark": "^2.1.4",
"colors": "^1.1.2",
"coveralls": "^2.13.1",
"diff": "^3.2.0",
"glob": "^7.1.2",
"immutable": "^3.8.2",
"istanbul": "^0.4.5",
"jasmine-core": "^2.6.2",
"karma": "^1.7.0",
"karma-jasmine-html-reporter": "^0.2.2",
"mocha": "^3.4.1",
"mocha-lcov-reporter": "^1.3.0",
"should": "^11.2.1",
"should-equal": "^1.0.1",
"uglify-js": "^3.0.10"
},
"bin": {
"bsb": "lib/bsb",
"bsc": "lib/bsc",
"bsrefmt": "lib/bsrefmt"
},
"scripts": {
"test": "go build -o test.exe scripts/test.go && ./test.exe",
"test-theme": "go run scripts/test.go -no-install-global -no-ounit -no-mocha -no-bsb",
"test-bsb": "go run scripts/test.go -no-install-global -no-ounit -no-mocha -no-theme",
"test-ocaml": "go run scripts/test.go -no-install-global -no-mocha -no-theme -no-bsb",
"cover": "istanbul cover --report html ./node_modules/.bin/_mocha -- ./jscomp/test/**/*test.js && open coverage/index.html",
"coverage": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- './jscomp/test/*test.js'",
"coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info",
"postinstall": "node scripts/install.js"
},
"name": "bs-platform",
"version": "3.2.0",
"description": "bucklescript compiler, ocaml standard libary by bucklescript and its required runtime support",
"repository": {
"type": "git",
"url": "git+https://github.com/bucklescript/bucklescript.git"
},
"keywords": [
"ocaml",
"bucklescript",
"stdlib",
"functional programming"
],
"author": {
"name": "Hongbo Zhang"
},
"maintainers": [
{
"name": "hongbo_zhang",
"email": "[email protected]"
}
],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/bucklescript/bucklescript/issues"
},
"homepage": "https://github.com/bucklescript/bucklescript#readme",
"opam": {
"type": "binary",
"installPath": "bin",
"libraryName": "bsbnative",
"ocamlVersion": "ocaml-version = \"4.02.3\"",
"buildCommand": "./scripts/opam_install.sh %{sbin}%",
"localBinaries": {
"./bin/refmt.exe": "refmt.exe",
"./bin/ninja.exe": "ninja.exe",
"./bin/bsb_helper.exe": "bsb_helper.exe",
"./bin/bsdep.exe": "bsdep.exe",
"./bin/bsc.exe": "bsc.exe",
"./bin/bspack.exe": "bspack",
"./bin/berror": "berror",
"./vendor/ocaml/ocamlc.opt": "ocamlc.opt",
"./vendor/ocaml/ocamlopt.opt": "ocamlopt.opt"
},
"binaries": {
"./bin/bsb.exe": "bsb"
}
}
}