-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 KB
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
{
"name": "@skybunk/state-manager",
"version": "0.0.1",
"description": "manage generic skybunk state across all platforms",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"code-format": "npx eslint ./ --fix && npx prettier \"**/*.js\" --write",
"code-format-check": "npx eslint ./ && npx prettier \"**/*.js\" --check"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/CGUC/state-manager.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CGUC/state-manager/issues"
},
"homepage": "https://github.com/CGUC/state-manager#readme",
"devDependencies": {
"@babel/preset-env": "^7.8.3",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"husky": "^4.1.0",
"jest": "^24.9.0",
"lint-staged": "^10.0.1",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
},
"dependencies": {
"eslint-config-prettier": "^6.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
}
}