-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 987 Bytes
/
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
{
"name": "@softwarefactory-project/re-ansi",
"version": "0.7.2",
"description": "ANSI code to HTML",
"files": [
"README.md",
"LICENSE",
"rescript.json",
"src/Ansi.res",
"src/Ansi.res.js"
],
"main": "./src/Ansi.res.js",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://github.com/softwarefactory-project/re-ansi",
"repository": {
"type": "git",
"url": "git+https://softwarefactory-project.io/r/software-factory/re-ansi.git"
},
"scripts": {
"build": "rescript",
"clean": "rescript clean",
"dev": "rescript -w",
"test": "npm run build && node tests/Spec.res.mjs",
"bundle": "npm run clean && npm run build && nanobundle build --clean --no-sourcemap --no-legal-comments --external=react"
},
"keywords": [
"ansi",
"rescript",
"react"
],
"devDependencies": {
"nanobundle": "^2.0.0",
"@rescript/core": "^1.3.0",
"@rescript/react": "^0.12.1",
"rescript": "^11.1.0"
}
}