-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 893 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 893 Bytes
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
{
"name": "rescript-css",
"version": "1.0.1",
"engines": {
"node": ">=24"
},
"packageManager": "yarn@4.9.2",
"description": "Css types",
"type": "module",
"scripts": {
"re:clean": "rescript clean",
"re:build": "rescript",
"re:format": "rescript format",
"re:watch": "rescript watch",
"test": "node --experimental-vm-modules ../node_modules/jest/bin/jest.js",
"testw": "node --experimental-vm-modules ../node_modules/jest/bin/jest.js --watchAll"
},
"keywords": [
"rescript",
"css"
],
"author": "Andreas Møller <andreas@sentia.ai>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/remitbri/rescript-css.git"
},
"devDependencies": {
"jest": "^30.0.0",
"rescript": "^12.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/lib/es6/__tests__/helpers"
]
}
}