-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
44
45
46
{
"name": "rescript-nodejs",
"version": "16.1.0",
"scripts": {
"build": "rescript",
"clean": "rescript clean",
"start": "rescript build -w",
"test": "rescript && pta lib/js/test/atomic/*.test.bs.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 'lib/js/{test,src}/**/*.bs.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": "^11.1.0",
"zora": "^5.2.0"
},
"files": [
"docs",
"examples",
"lib/js",
"src",
"test",
"bsconfig.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.0.2"
}