-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.58 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ttb-node-sdk",
"version": "1.0.2",
"description": "A SDK to communicate with TheTimeBilling Rest API",
"main": "dist/ttb-node-sdk.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "watch",
"babel": "babel src -d lib --ignore '**/*.test.js'",
"lint-staged": "lint-staged",
"test": "jest",
"test:watch": "jest jest --watch --coverage",
"test:coverage": "jest --coverage",
"prettify": "prettier \"**/*.{js,jsx,json,css,md,scss}\" --write"
},
"files": [
"dist"
],
"jest": {
"testRegex": ".test.js$",
"resolver": "jest-directory-named-resolver",
"clearMocks": true,
"resetModules": true,
"resetMocks": true,
"moduleDirectories": [
"src",
"node_modules"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"node_modules",
"package.json",
"lib",
"dist"
],
"coverageReporters": [
"html",
"text-summary",
"text"
]
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint",
"git add"
],
"*.{json,css,md,scss}": [
"prettier --write",
"stylelint",
"git add"
]
},
"gitHooks": {
"pre-commit": "yarn lint-staged"
},
"author": "Daniel Ochoa",
"license": "MIT",
"devDependencies": {
"@5rabbits/eslint-config": "^1.0.2",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"jest-directory-named-resolver": "0.0.1",
"lint-staged": "^7.3.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.0",
"stylelint": "^9.6.0",
"stylelint-config-recommended": "^2.1.0",
"yorkie": "^2.0.0"
},
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.11",
"moxios": "^0.4.0"
}
}