-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 946 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
{
"name": "verify-tc",
"description": "Verify Turkish Citizenship Number",
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Mahmut Can CINGI",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:cancng/verify-tc.git"
},
"bugs": {
"url": "https://github.com/cancng/verify-tc/issues",
"email": "[email protected]"
},
"keywords": [
"turkish citizenship number",
"türk vatandaşlık numarası",
"tc no",
"tc kimlik"
],
"scripts": {
"dev": "ts-node-dev --tree-kill --no-notify --respawn --exit-child src/index.ts",
"start": "node dist/index",
"clean": "rm -rf dist",
"build": "npm -s run clean && tsc"
},
"devDependencies": {
"@types/node": "^16.4.12",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"soap": "^0.40.0"
}
}