-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "@jougene/noar",
"version": "0.1.2",
"author": "Eugene Sinitsyn",
"keywords": [
"knex",
"activerecord",
"orm",
"rails"
],
"description": "NodeJS ActiveRecord",
"homepage": "https://github.com/jougene/noar#readme",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint \"{src,examples,test}/**/*.js\"",
"examples:payments:print": "node examples/payments",
"examples:payments:repl": "nodemon --experimental-repl-await examples/payments/repl.js",
"examples:payments:repl:debug": "DEBUG=knex:query,knex:bindings nodemon --experimental-repl-await examples/payments/repl.js",
"examples:bookings:repl": "nodemon --experimental-repl-await examples/bookings/repl.js",
"examples:blog:repl": "nodemon --experimental-repl-await examples/blog/repl.js",
"examples:blog:repl:debug": "DEBUG=knex:query,knex:bindings nodemon --experimental-repl-await examples/blog/repl.js",
"test": "mocha test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jougene/noar.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jougene/noar/issues"
},
"dependencies": {
"inflected": "^2.1.0",
"joi": "^17.4.0",
"knex": "^0.95.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"mocha": "^8.3.2",
"module-alias": "^2.2.2",
"nodemon": "^2.0.7",
"pg": "^8.6.0"
},
"nodemonConfig": {
"restartable": false
},
"mocha": {
"colors": true,
"exit": true,
"file": [
"./test/bootstrap.js"
]
},
"_moduleAliases": {
"@jougene/noar": "./src"
}
}