-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "tictac-node",
"version": "0.1.0",
"description": "A flexible TicTacToe backend.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "ts-node-dev examples/run_cli.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"updatereadme": "npx readme-md-generator -y -p README.template.md",
"typedoc": "typedoc --options typedocconfig.ts",
"lint": "",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "",
"version": "npm run format && git add -A src && npm run updatereadme && npm run typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ingles98/tictac-node"
},
"bugs": {
"url": "https://github.com/ingles98/tictac-node/issues"
},
"keywords": [
"tic-tac-toe",
"tictactoe",
"node",
"typescript"
],
"author": "Filipe Reis",
"license": "TODO",
"devDependencies": {
"@types/node": "^14.14.19",
"@types/readline-sync": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"eslint": "^7.17.0",
"prettier": "^2.2.1",
"readme-md-generator": "^1.0.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"readline-sync": "^1.4.10"
}
}