forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"devDependencies": {
"benchmark": "^2.1.0",
"colors": "^1.1.2",
"coveralls": "^2.11.9",
"diff": "^2.2.2",
"glob": "^7.0.3",
"istanbul": "^0.4.2",
"karma": "^0.13.9",
"karma-jasmine-html-reporter": "^0.1.8",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.2.0",
"should": "^7.0.4",
"should-equal": "^0.5.0",
"uglify-js": "^2.6.1"
},
"scripts": {
"test": "mocha './lib/js/test/**/*_test.js' ",
"wtest": "mocha './lib/js/test/**/*_test.js' -R spec -w",
"cover": "node ./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/.bin/_mocha -- ./lib/js/test/**/*test.js",
"coverage": "`npm bin`/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- './lib/js/test/*test.js' -R spec",
"coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info",
"postinstall": "./scripts/postinstall.sh"
},
"name": "bs-platform",
"version": "0.8.1",
"description": "bucklescript compiler, ocaml standard libary by bucklescript and its required runtime support",
"repository": {
"type": "git",
"url": "git+https://github.com/bloomberg/bucklescript.git"
},
"bin": {
"bsc": "./bin/bsc",
"ocaml": "./bin/ocaml",
"ocamlc": "./bin/ocamlc.opt",
"ocamldep": "./bin/ocamldep.opt",
"ocamllex": "./bin/ocamllex.opt",
"ocamlobjinfo": "./bin/ocamlobjinfo",
"ocamlopt.opt": "./bin/ocamlopt",
"ocamlrun": "./bin/ocamlrun",
"ocamlyacc": "./bin/ocamlyacc"
},
"keywords": [
"ocaml",
"bucklescript",
"stdlib",
"functional programming"
],
"author": {
"name": "Hongbo Zhang"
},
"maintainers": [
{
"name": "hongbo_zhang",
"email": "[email protected]"
}
],
"license": "see LICENSE",
"bugs": {
"url": "https://github.com/bloomberg/bucklescript/issues"
},
"homepage": "https://github.com/bloomberg/bucklescript#readme"
}