forked from esbullington/bs-xml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "@ninefx/bs-xml",
"description": "DOM Document decode API for ReScript",
"version": "0.4.0",
"repository": {
"type": "git",
"url": "https://github.com/NineFX/bs-xml.git"
},
"author": {
"name": "Andriy Nesterenko",
"email": "[email protected]",
"url": "https://github.com/zpnester"
},
"contributors": [
"Eric S Bullington <[email protected]>",
"Joey Eckstrom <[email protected]>",
"Chris Bowling <[email protected]>",
"Drew Varner <[email protected]>",
"Samuel Nichols <[email protected]>"
],
"scripts": {
"clean": "rescript clean -with-deps",
"build": "rescript build",
"watch": "rescript build -w",
"webpack-dev-server": "webpack-dev-server",
"start": "concurrently --raw npm:watch npm:webpack-dev-server"
},
"keywords": [
"ReScript",
"DOMParser",
"Document",
"XML",
"browser"
],
"license": "MIT",
"devDependencies": {
"concurrently": "8.2.2",
"copy-webpack-plugin": "12.0.2",
"html-webpack-plugin": "5.6.0",
"webpack": "^5.94.0"
},
"dependencies": {
"rescript": "^11.1.2",
"rescript-webapi": "^0.9.1",
"@rescript/core": "1.5.2"
}
}