forked from darklang/rescript-tea
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (45 loc) · 1.4 KB
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
{
"name": "rescript-tea",
"version": "0.15.0",
"description": "TEA for Bucklescript",
"main": "index.js",
"scripts": {
"clean": "rescript clean",
"clean:all": "rescript -clean-world",
"build": "rescript",
"build:all": "rescript clean -with-deps",
"watch": "rescript -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"
},
"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.5.0",
"npm-run-all": "^4.0.2",
"pre-commit": "^1.2.2",
"rescript": "^9.1.4",
"watchify": "^3.11.1"
},
"dependencies": {
"rescript-webapi": "^0.6.1"
}
}