-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "sppe-node-js",
"version": "1.0.0",
"description": "proof of recruiment",
"main": "promptInterface.js",
"scripts": {
"test": "jest --coverage --collectCoverageFrom=src/**",
"eslint": "./node_modules/.bin/eslint .",
"pretty-quick": "pretty-quick",
"pretty-check": "pretty-quick --check",
"precommit": "npm run eslint --fix && npm run pretty-quick --staged && npm run test"
},
"keywords": [
"test cli seven-segments neural-networks brain"
],
"author": "Victor Higuita <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/harvic3/sspe-project"
},
"bin": {
"sspe": "./promptInterface.js"
},
"devDependencies": {
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"install": "^0.13.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0"
},
"dependencies": {
"brain.js": "^1.6.1",
"inquirer": "^8.2.4",
"minimist": "^1.2.8",
"node-emoji": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}