-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 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
{
"name": "@threema/threema-markup",
"version": "1.1.0",
"description": "A markup parser and formatter for the markup language used in Threema.",
"author": "Threema GmbH",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/src",
"/dist",
"/LICENSE-*",
"/CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/threema-ch/threema-markup.git"
},
"keywords": [
"markup",
"threema",
"formatting"
],
"homepage": "https://github.com/threema-ch/threema-markup#readme",
"bugs": {
"url": "https://github.com/threema-ch/threema-markup/issues"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json"
},
"devDependencies": {
"@types/jasmine": "^4.3.0",
"@types/node": "^18.8.3",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}