-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 765 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 765 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
{
"name": "rescript-chalk",
"version": "1.0.0",
"description": "ReScript bindings to the 'Chalk' string style library",
"main": "index.js",
"repository": "git@github.com:austindd/rescript-chalk.git",
"author": "austindd",
"license": "MIT",
"private": true,
"scripts": {
"start": "npx bsb -make-world -w",
"build": "npx bsb -make-world",
"clean": "npx bsb -clean-world",
"clean-build": "npx bsb -clean-world && npx bsb -make-world",
"clean-start": "npx bsb -clean-world && npx bsb -make-world && npx bsb -w",
"test": "jest"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.6.0",
"bs-platform": "^8.4.2"
},
"peerDependencies": {
"bs-platform": "^8.0.0"
},
"dependencies": {
"chalk": "^4.1.0"
}
}