-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.02 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
{
"name": "rescript-tools-doc-md",
"version": "0.0.0",
"scripts": {
"link:tools": "npm link @rescript/tools",
"build": "rescript",
"clean": "rescript clean",
"dev": "rescript build -w",
"test:core": "node ./test/DocGen.bs.js ./node_modules/@rescript/core/src/RescriptCore.res ./test/md/RescriptCore.md",
"test:example": "node ./test/DocGen.bs.js ./test/ExampleModule.res ./test/md/Example.md",
"test:functor": "node ./test/DocGen.bs.js ./test/Functor.res ./test/md/Functor.md",
"test:module-type": "node ./test/DocGen.bs.js ./test/ModuleType.res ./test/md/ModuleType.md -json",
"test": "npm run test:core && npm run test:example && npm run test:functor && npm run test:module-type",
"test:watch": "nodemon --exec npm run test"
},
"keywords": ["rescript"],
"author": "Christoph Porod-Wanasek",
"license": "MIT",
"dependencies": {
"@rescript/core": "[email protected]:rescript-association/rescript-core.git",
"rescript": "^11.0.1"
},
"devDependencies": {
"@rescript/tools": "^0.4.0",
"nodemon": "^3.0.3"
}
}