-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.42 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
43
44
45
46
47
48
49
50
51
{
"name": "bs-sql-composer",
"version": "3.2.1",
"description": "A library for SQL composition in BuckleScript",
"scripts": {
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"format": "bsrefmt --in-place",
"precommit": "lint-staged",
"start": " yarn install ; bsb -clean-world ; bsb -make-world -w",
"test": "bsb -clean-world ; bsb -make-world ; jest --coverage ; yarn coverage ",
"test:no-report": "bsb -clean-world ; bsb -make-world ; jest --coverage",
"watch:test": "jest --coverage --watchAll"
},
"lint-staged": {
"*.{re,rei}": [
"yarn format",
"git add"
]
},
"keywords": [
"BuckleScript",
"reason",
"reasonml",
"sql",
"databases",
"node"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules",
"/__tests__/assets/*"
]
},
"bugs": "https://github.com/scull7/bs-sql-composer/issues",
"homepage": "https://github.com/scull7/bs-sql-composer",
"main": "src/SqlComposer.bs.js",
"repository": "git@github.com:scull7/bs-sql-composer.git",
"author": "Nathan Sculli <scull7@gmail.com>",
"license": "MIT",
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"@glennsl/bs-json": "^2.0.0",
"bs-platform": "^4.0.1",
"coveralls": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.2",
"nyc": "^11.8.0"
}
}