-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "awokado",
"version": "0.2.0",
"description": "Official client for Awokado API",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir .",
"clean": "rm -rf query-dsl resources serializers structs index.js",
"commit": "git-cz",
"lint": "eslint src",
"prebuild": "yarn clean",
"prepublishOnly": "yarn build",
"test": "yarn lint && jest src"
},
"files": [
"query-dsl",
"resources",
"serializers",
"structs"
],
"keywords": [
"awokado"
],
"author": "",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@exeto/eslint-config": "^2.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-plugin-transform-imports": "^1.5.1",
"commitizen": "^3.1.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"prettier": "^1.17.0"
}
}