-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@dsiu/rescript-stdlib-fp",
"version": "0.0.1",
"author": "Danny Siu <[email protected]>",
"packageManager": "[email protected]",
"scripts": {
"clean": "rescript clean -with-deps",
"build": "rescript build",
"watch": "rescript build -w",
"test": "jest",
"clean:build": "yarn clean && yarn build",
"clean:watch": "yarn clean && yarn watch",
"clean:test": "yarn clean && yarn build test",
"test:watch": "onchange --await-write-finish 1000 --initial '{__tests__,src}/**/*.mjs' -- yarn test",
"test:watchexec": "watchexec -r -d 0 -w lib/bs -e log -- yarn test"
},
"license": "MIT",
"keywords": [
"rescript"
],
"type": "module",
"jest": {
"testMatch": [
"**/*_Test.(js|ts|jsx|tsx|mjs)"
],
"transform": {
"^.+\\.m?jsx?$": "@swc/jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(rescript|@rescript/core|@glennsl/rescript-jest|@greenlabs/garter|)/)"
],
"moduleFileExtensions": [
"js",
"jsx",
"mjs"
]
},
"dependencies": {
"@greenlabs/garter": "git+https://github.com/dsiu/garter#rescript-v11-curried-mode",
"@rescript/core": "^1.6.1"
},
"peerDependencies": {
"@rescript/core": "^1.6.1",
"rescript": "^11.1.4"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@glennsl/rescript-jest": "git+https://github.com/dsiu/rescript-jest#rescript-v11-curried-mode",
"@swc/core": "^1.9.3",
"@swc/jest": "^0.2.37",
"onchange": "^7.1.0",
"rescript": "^11.1.4",
"tap-difflet": "^0.7.2"
}
}