-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "@pedro-l9/functional-snake",
"version": "0.13.2",
"description": "A snake game engine written in a functional-ish way",
"repository": "pedro-l9/functional-snake",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest --watchAll --coverage",
"test:ci": "CI=true npm test -- --watchAll=false",
"test:ci:report": "npm run test:ci && codecov --token=$CODECOV_TOKEN",
"prepare": "tsc",
"lint": "eslint",
"lint:ci": "eslint '*/**/*.{js,ts}' --quiet",
"format": "prettier"
},
"author": "Pedro Lacerda",
"license": "MIT",
"keywords": [
"functional",
"snake",
"game",
"pedro-l9"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:ci"
}
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint -- --fix",
"npm run format -- --write"
]
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"codecov": "^3.7.2",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.3.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"dependencies": {
"ramda": "^0.27.1",
"@types/ramda": "^0.27.14"
}
}