This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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
{
"name": "fluorite",
"version": "2.0.1",
"description": "Lightweight ORM based on Knex.js query builder.",
"main": "dist/index.js",
"repository": "https://github.com/pldin601/Fluorite.js",
"engines": {
"node": "^8"
},
"scripts": {
"test": "jest --verbose",
"lint": "eslint src/",
"cover": "jest --coverage && (cat ./coverage/lcov.info | coveralls)",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublish": "npm run build"
},
"author": "Roman Lakhtadyr <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/lodash": "^4.14.76",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^20",
"babel-plugin-transform-builtin-extend": "*",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "*",
"babel-preset-stage-0": "*",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "^20",
"jest": "^20",
"knex": "*",
"sqlite3": "^3.1.13",
"ts-jest": "^21.0.1",
"typescript": "^2.5.3"
},
"dependencies": {
"continuation-local-storage": "^3.2.0",
"lodash": "*",
"stream-to-async-iterator": "^0.2.0",
"@types/knex": "0.0.57",
"@types/continuation-local-storage": "^3.2.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js",
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"keywords": [
"orm",
"database",
"mysql",
"postgresql",
"sqlite",
"datamapper",
"active record",
"object relational mapper",
"es6",
"immutable",
"async"
]
}