This repository has been archived by the owner on Jun 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.02 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "bs-knex",
"version": "3.1.0",
"description": "BuckleScript interface to the node 'knex' library",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"prepush": "yarn build && yarn test",
"test": "cross-env NODE_ENV=test jest",
"test.watch": "cross-env NODE_ENV=test jest --watch",
"format.re": "refmt --in-place src/**/*.re",
"lint": "eslint --ext .js,.jsx ./",
"build": "bsb -make-world",
"build.watch": "yarn build -w",
"build.clean": "bsb -clean-world"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bkonkle/bs-knex.git"
},
"keywords": [
"bucklescript",
"reason",
"node",
"database",
"sql",
"knex"
],
"author": "Brandon Konkle <[email protected]> (http://ecliptic.io)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/bkonkle/bs-knex/issues"
},
"homepage": "https://github.com/bkonkle/bs-knex#readme",
"dependencies": {
"bs-node-debug": "^0.2.0",
"knex": "^0.14.6"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"bs-platform": "^3.0.0",
"cross-env": "^5.1.5",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.4",
"lint-staged": "^7.1.1",
"sqlite3": "^4.0.0"
},
"jest": {
"testURL": "http://localhost",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom"
],
"testMatch": [
"<rootDir>/tests/**/?(*)(Spec|Test).bs.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testEnvironment": "node"
},
"lint-staged": {
"src/**/*.re": [
"refmt --in-place",
"git add"
]
}
}