-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 928 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
41
42
43
{
"name": "satzbau",
"version": "2.1.0",
"description": "natural language generator for german",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"umd:main": "dist/index.umd.js",
"repository": "[email protected]:TimoBechtel/satzbau.git",
"author": "Timo Bechtel",
"license": "MIT",
"keywords": [
"nlg",
"german",
"natural",
"language",
"text",
"sentence",
"generator",
"declension"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.0.3",
"jest": "^27.4.3",
"microbundle": "^0.14.2",
"semantic-release": "^18.0.1",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
},
"files": [
"dist",
"package.json"
],
"scripts": {
"prepack": "npm run build",
"build": "microbundle --no-sourcemap",
"dev": "microbundle watch --no-sourcemap",
"test": "jest"
},
"dependencies": {}
}