-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "@glennsl/bs-revamp",
"version": "0.2.0",
"description": "A safe and functional API for JavaScript regexes",
"scripts": {
"clean": "bsb -clean-world",
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"test": "npm run build && jest --coverage && npm run coverage",
"watch:jest": "jest --coverage --watchAll",
"bench": "npm run build && node lib/js/__bench__/bench.js"
},
"homepage": "https://github.com/glennsl/bs-revamp#readme",
"bugs": "https://github.com/glennsl/bs-revamp/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/glennsl/bs-revamp.git"
},
"keywords": [
"reason",
"bucklescript",
"regex",
"regular expressions"
],
"license": "MIT",
"author": "glennsl",
"files": [
"src/",
"bsconfig.json"
],
"devDependencies": {
"@glennsl/bs-jest": "^0.7.0",
"bs-benchmarkjs": "glennsl/bs-benchmarkjs",
"bs-platform": "^9.0.2",
"coveralls": "^3.1.0",
"nyc": "^15.1.0"
},
"dependencies": {
"@glennsl/rebase": "^0.2.1"
}
}