-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 957 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 957 Bytes
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
{
"name": "trjs",
"version": "2.0.0",
"description": "A Library That Uses Turkish Grammar and Composes Turkish Sentences",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node ./dist/examples/verb-conjugation-demo.js",
"pretest": "npm run build",
"test": "mocha ./dist/test/**/*.js",
"test:watch": "mocha ./dist/test/**/*.js --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"demo": "npm run build && npm start"
},
"author": "Hüseyin Akbaş <huskb.code@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.0",
"mocha": "^10.2.0",
"typescript": "^5.3.0"
},
"files": [
"dist/**/*"
],
"keywords": [
"turkish",
"grammar",
"language",
"conjugation",
"morphology"
]
}