-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "bucklescript-tea",
"version": "0.15.0",
"description": "TEA for Bucklescript",
"main": "index.js",
"scripts": {
"clean": "bsb clean",
"clean:all": "bsb -clean-world",
"build": "bsb",
"build:all": "bsb -make-world",
"watch": "bsb -w",
"build:test:client": "browserify --standalone=Test_client --outfile=lib/js/test-ocaml/app_test_client.js lib/js/test-ocaml/test_client.js",
"watch:test:client": "watchify --standalone=Test_client --outfile=lib/js/test-ocaml/app_test_client.js lib/js/test-ocaml/test_client.js",
"watch:test": "run-p watch watch:test:*",
"prebuild:test": "run-s build",
"build:test": "run-p build:test:*",
"pretest": "run-s build:test",
"test": "echo \"Error: no test specified\" && exit 1",
"dual-syntax": "bin/dual-syntax"
},
"repository": {
"type": "git",
"url": "git+https://github.com/overminddl1/bucklescript-tea.git"
},
"keywords": [
"TEA",
"Bucklescript",
"OCaml"
],
"author": "OvermindDL1",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/overminddl1/bucklescript-tea/issues"
},
"homepage": "https://github.com/overminddl1/bucklescript-tea#readme",
"devDependencies": {
"browserify": "^14.0.0",
"bs-platform": "^7.1.1",
"npm-run-all": "4.0.2",
"pre-commit": "^1.2.0",
"watchify": "^3.11.1"
},
"pre-commit": [
"dual-syntax"
]
}