-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
29 lines (29 loc) · 1 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
{
"private": true,
"scripts": {
"postinstall": "dotnet tool restore",
"publish": "dotnet fsi Build.fsx publish",
"pretest": "dotnet fable tests -o build/tests",
"test": "mocha -r esm build/tests -t 10000",
"docs:clean": "shx rm -rf deploy",
"predocs:watch": "npm run docs:clean",
"docs:watch": "nacara watch",
"predocs:build": "npm run docs:clean",
"docs:api-gen": "dotnet publish src && dotnet nacara-apigen --project Fable.Promise -lib src/bin/Debug/netstandard2.0/publish --output docs --base-url /fable-promise/",
"docs:build": "npm run docs:api-gen && nacara",
"docs:deploy": "npm run build && gh-pages -d docs_deploy"
},
"dependencies": {
"esm": "^3.2.25",
"fable-publish-utils": "^2.2.0",
"mocha": "^10.8.2"
},
"devDependencies": {
"gatsby-remark-vscode": "^3.3.1",
"gh-pages": "^5.0.0",
"nacara": "^1.0.0",
"nacara-layout-standard": "^1.0.0",
"shx": "^0.3.3",
"vscode-theme-onelight": "github:akamud/vscode-theme-onelight"
}
}