forked from TheSpyder/rescript-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
30
31
32
33
34
35
{
"name": "rescript-nodejs",
"version": "14.3.1",
"scripts": {
"build": "rescript || 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 lib/bs -e log -- yarn test"
},
"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"
},
"description": "Node bindings for ReScript",
"license": "MIT",
"devDependencies": {
"@dusty-phillips/rescript-zora": "^3.0.0",
"onchange": "^7.1.0",
"pta": "^1.0.0",
"rescript": "^9.1.4",
"zora": "^5.0.0"
}
}