-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "tc-verify",
"version": "1.0.0",
"description": "Türkiye Cumhuriyetine kayıtlı bireylerin TC Kimlik Numarasının doğruluğunu kontrol etmektedir",
"main": "build/index.js",
"scripts": {
"start": "npm run build && node ./build/index.js",
"start:dev": "nodemon --exec babel-node ./src/index.js",
"test": "mocha ./test/**/*.spec.js --timeout 20000 --require babel-register",
"clean": "rd /s /q build && mkdir build",
"build": "npm run clean && babel -d ./build ./src -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aozfen/tc-verify.git"
},
"keywords": [
"tc",
"kimlik",
"doğrula",
"kimlik",
"no"
],
"author": "Ahmet Özfen - [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/aozfen/tc-verify/issues"
},
"homepage": "https://github.com/aozfen/tc-verify#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"soap": "^0.25.0"
}
}