-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 KB
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
{
"name": "relude-reason-react",
"description": "Relude-based utilities for ReasonReact",
"version": "0.10.0",
"scripts": {
"clean": "bsb -clean-world",
"build": "bsb -make-world",
"watch": "bsb -make-world -w",
"test": "jest",
"coverage": "jest --coverage --coverage-reporters=lcov --coverage-reporters=text --coverage-directory ./docs/coverage",
"cleanbuild": "npm run clean && npm run build",
"cleantest": "npm run cleanbuild && npm run test",
"cleancoverage": "npm run cleanbuild && npm run coverage",
"demo": "parcel examples/demo/index.html",
"sandbox": "parcel examples/sandbox/index.html"
},
"keywords": [
"BuckleScript",
"ReasonML",
"Relude",
"React",
"ReasonReact"
],
"homepage": "https://github.com/reazen/relude-reason-react",
"repository": "https://github.com/reazen/relude-reason-react",
"bugs": "https://github.com/reazen/relude-reason-react/issues",
"license": "MIT",
"peerDependencies": {
"bs-bastet": "~1.2.5",
"reason-react": "~0.7.0",
"relude": "~0.59.0"
},
"devDependencies": {
"@glennsl/bs-jest": "~0.5.1",
"bs-bastet": "~1.2.5",
"bs-platform": "~7.2.2",
"bs-react-testing-library": "^0.6.0",
"bsb-js": "~1.1.7",
"parcel-bundler": "~1.12.4",
"reason-react": "~0.7.0",
"relude": "~0.59.0"
},
"jest": {
"verbose": false,
"testPathIgnorePatterns": [
"/node_modules/"
]
}
}