-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (40 loc) · 1.21 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
{
"name": "rescript-tea",
"version": "0.16.0",
"description": "The Elm Architecture (TEA) for Rescript",
"main": "index.js",
"scripts": {
"clean": "rescript clean",
"build": "rescript build -with-deps",
"build:test:client": "browserify --standalone=Test_client --outfile=lib/js/test/app_test_client.js lib/js/test/test_client.js",
"build:test": "run-p build:test:*",
"watch": "rescript build -w -with-deps",
"watch:test:client": "watchify --standalone=Test_client --outfile=lib/js/test/app_test_client.js lib/js/test/test_client.js",
"watch:test": "run-p watch watch:test:*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darklang/rescript-tea.git"
},
"keywords": [
"TEA",
"Rescript",
"MVU"
],
"author": "OvermindDL1",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/darklang/rescript-tea/issues"
},
"homepage": "https://github.com/darklang/rescript-tea#readme",
"devDependencies": {
"browserify": "^17.0.0",
"npm-run-all": "4.1.5",
"rescript": "9.1.4",
"watchify": "^4.0.0"
},
"dependencies": {
"rescript-webapi": "^0.7.0"
}
}