|
2 | 2 | "name": "reason-nodejs", |
3 | 3 | "version": "13.0.0-beta.2", |
4 | 4 | "scripts": { |
5 | | - "build": "bsb -make-world", |
6 | | - "clean-build": "bsb -clean-world && bsb -make-world", |
7 | | - "start": "bsb -make-world -w", |
8 | | - "clean-start": "bsb -clean-world && bsb -make-world -w", |
9 | | - "test": "jest", |
10 | | - "clean-test": "bsb -clean-world && bsb -make-world && jest", |
11 | | - "clean": "bsb -clean-world" |
| 5 | + "build": "rescript", |
| 6 | + "clean": "rescript clean", |
| 7 | + "start": "rescript build -w", |
| 8 | + "test": "pta 'lib/js/test/atomic/*.test.bs.js'", |
| 9 | + "clean-build": "run-s clean build", |
| 10 | + "clean-start": "run-s clean start", |
| 11 | + "clean-test": "run-s clean build test", |
| 12 | + "test-start": "onchange --await-write-finish 1000 --initial 'lib/js/{test,src}/**/*.bs.js' -- yarn test", |
| 13 | + "test-watchexec": "watchexec -r -d 0 -w lib/bs -e log -- yarn test" |
12 | 14 | }, |
13 | 15 | "keywords": [ |
14 | | - "BuckleScript" |
| 16 | + "rescript", |
| 17 | + "nodejs" |
15 | 18 | ], |
16 | | - "author": "Sikan He & Austin Davis", |
17 | | - "homepage": "https://github.com/sikanhe/reason-node", |
| 19 | + "author": "Andrew Herron", |
| 20 | + "homepage": "https://github.com/thespyder/reason-node", |
18 | 21 | "license": "MIT", |
19 | 22 | "dependencies": {}, |
20 | 23 | "devDependencies": { |
21 | | - "@glennsl/bs-jest": "^0.4.10", |
22 | | - "bs-platform": "^8.3.0" |
| 24 | + "@dusty-phillips/rescript-zora": "^2.0.0", |
| 25 | + "npm-run-all": "^4.1.5", |
| 26 | + "onchange": "^7.1.0", |
| 27 | + "pta": "^1.0.0", |
| 28 | + "rescript": "^9.1.4" |
23 | 29 | } |
24 | 30 | } |
0 commit comments