forked from shakacode/rescript-classnames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 933 Bytes
/
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
{
"name": "re-classnames",
"version": "4.1.0",
"description": "Simple reimplementation of classnames in ReasonML",
"main": "src/ClassNames.re",
"author": "Alex Fedoseev <[email protected]>",
"license": "MIT",
"scripts": {
"start": "bsb -clean-world -make-world -w",
"build": "bsb -clean-world -make-world",
"clean": "bsb -clean-world",
"test": "yarn run build && jest",
"refmt": "find -E . -regex '.+\\.rei?' -exec refmt --in-place {} \\;",
"preversion": "yarn run clean && yarn run refmt && yarn run test"
},
"files": [
"src",
"bsconfig.json"
],
"keywords": [
"react",
"reason",
"reason-react",
"reasonml",
"ocaml",
"bucklescript",
"classnames"
],
"repository": {
"type": "git",
"url": "https://github.com/alexfedoseev/re-classnames.git"
},
"devDependencies": {
"@glennsl/bs-jest": "0.4.9",
"bs-platform": "7.0.1"
}
}