-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "rescript-webapi",
"version": "0.10.0",
"description": "ReScript bindings to the DOM and other Web APIs",
"repository": {
"type": "git",
"url": "https://github.com/TheSpyder/rescript-webapi.git"
},
"homepage": "https://github.com/TheSpyder/rescript-webapi#readme",
"keywords": [
"rescript",
"bindings",
"web",
"dom",
"browser",
"reason",
"bucklescript"
],
"scripts": {
"build": "rescript",
"start": "rescript build -w",
"clean": "rescript clean",
"doc-install": "npm install --no-save bsdoc",
"doc": "rescript && bsdoc build api && bsdoc support-files",
"test": "rescript && echo 'checking for differences in compiled output...' && sleep 1 && git diff --exit-code HEAD -- && echo 'success!'",
"format-all": "rescript format -all",
"prepublishOnly": "rescript clean && rescript build"
},
"files": [
"src",
"bsconfig.json"
],
"author": "Andrew Herron",
"license": "MIT",
"devDependencies": {
"@ryyppy/rescript-promise": "^2.1.0",
"rescript": "^10.1.4"
},
"packageManager": "[email protected]"
}