-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 1.76 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": "xorm",
"version": "0.7.6",
"description": "ORM based on ObjectionJS with some extra utilities",
"main": "dist/index.js",
"repository": "smartprix/xorm",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run test-only",
"check-coverage": "true",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test-only": "mocha test/*.test.js",
"build": "rm -rf dist && babel src --out-dir dist",
"-precommit": "npm run build && npm test && npm run check-coverage",
"prepublishOnly": "npm run build"
},
"author": "Hitesh Khandelwal <hitesh@smartprix.com> (http://www.smartprix.com/)",
"license": "ISC",
"dependencies": {
"@types/node": "^12.7.4",
"dataloader": "^1.4.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"chai": "4.2.0",
"eslint": "5.11.1",
"eslint-config-smartprix": "3.5.4",
"knex": "^0.19.0",
"mocha": "5.2.0",
"objection": "^1.6.9",
"sm-utils": "^2.14.5"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"modules": "commonjs",
"shippedProposals": true
}
]
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
],
"sourceMaps": true
},
"eslintConfig": {
"extends": "smartprix",
"rules": {
"vue/script-indent": 0
}
},
"peerDependencies": {
"knex": ">= 0.19.0 < 1.0",
"objection": "^1.6.9",
"sm-utils": "^2.14.5"
}
}