-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 963 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
40
41
{
"name": "money-tracker",
"version": "1.0.0",
"description": "mini program",
"scripts": {
"test": "jest",
"eslint": "eslint --fix cloudfunctions/db/src/* cloudfunctions/db/__tests__/*"
},
"devDependencies": {
"@babel/preset-env": "^7.10.2",
"babel-jest": "^26.0.1",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"husky": "^4.2.3",
"jest": "^25.2.7",
"lint-staged": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/1483523635/money-tracker.git"
},
"keywords": [
"mini-program"
],
"author": "xiaoqu",
"license": "ISC",
"bugs": {
"url": "https://github.com/1483523635/money-tracker/issues"
},
"homepage": "https://github.com/1483523635/money-tracker#readme",
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}