forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.91 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
{
"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": "bsb-native",
"version": "4.0.1100",
"description": "Bucklescript build systen fork to compile to native",
"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"
}