-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.22 KB
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
{
"name": "rescript-nodejs",
"version": "17.0.0",
"scripts": {
"build": "rescript",
"clean": "rescript clean",
"start": "rescript build -w",
"test": "rescript && pta test/atomic/*.test.res.js",
"clean-build": "yarn clean && yarn build",
"clean-start": "yarn clean && yarn start",
"clean-test": "yarn clean && yarn build test",
"test-start": "onchange --await-write-finish 1000 --initial '{src,test}/**/*.res.js' -- yarn test",
"test-watchexec": "watchexec -r -d 0 -w src -w test -e res -- yarn test"
},
"description": "Node bindings for ReScript",
"license": "MIT",
"devDependencies": {
"@dusty-phillips/rescript-zora": "^4.0.0",
"changie": "^1.18.0",
"onchange": "^7.1.0",
"pta": "1.2.0",
"rescript": "^12.2.0",
"zora": "^5.2.0"
},
"files": [
"src/**/*.res",
"src/**/*.resi",
"rescript.json",
"CHANGELOG.md"
],
"keywords": [
"rescript",
"nodejs"
],
"author": "Andrew Herron",
"homepage": "https://github.com/TheSpyder/rescript-nodejs",
"bugs": "https://github.com/TheSpyder/rescript-nodejs/issues",
"repository": {
"type": "git",
"url": "git://github.com/TheSpyder/rescript-nodejs.git"
},
"packageManager": "yarn@4.17.0"
}