-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "@gelight/sml",
"private": false,
"version": "0.3.3",
"description": "Simple Markup Language",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/GELight/sml.git"
},
"keywords": [
"ReliableTxt",
"WhitespaceSV",
"SimpleML",
"SML",
"Simple",
"Markup",
"Language"
],
"author": "Mario Linz",
"license": "MIT",
"bugs": {
"url": "https://github.com/GELight/sml/issues"
},
"homepage": "https://github.com/GELight/sml#readme",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' npm run build",
"build": "tsc && node dist/index.js",
"eslint": "eslint . --ext .ts",
"test:unit": "tsc && jest --coverage",
"release": "./build-release.sh"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"auto-changelog": "^2.3.0",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"files": [
"dist"
]
}