-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 972 Bytes
/
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
{
"name": "@openfinanceio/dsl-queries",
"version": "2.3.3",
"description": "A small node library for normalizing and validating incoming DSL queries in a specific format.",
"repository": {
"type": "git",
"url": "https://github.com/OpenFinanceIO/ts-dsl-queries.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "tsc -p tsconfig.test.json && mocha dist-tests/tests",
"prepublishOnly": "tsc"
},
"author": "OpenFinance",
"license": "MIT",
"dependencies": {
"@openfinanceio/http-errors": "^1.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.15",
"chai": "^4.2.0",
"husky": "^1.3.1",
"mocha": "^6.2.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}