-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 958 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
{
"name": "@xcvz/up",
"version": "1.0.2",
"description": "A markup language for writing structured documents in plain text",
"main": "compiled/Main.js",
"types": "compiled/Main.d.ts",
"files": [
"compiled/Main.js",
"compiled/Main.d.ts",
"compiled/Implementation"
],
"scripts": {
"build": "rm -rf ./compiled && tsc",
"test": "npm run build && mocha --recursive ./compiled/Test && mocha ./verify-package-settings.js"
},
"keywords": [
"formatting",
"language",
"markup",
"writing"
],
"author": "Daniel Miller <daniel@wants.email>",
"repository": {
"type": "git",
"url": "https://github.com/start/up.git"
},
"bugs": {
"url": "https://github.com/start/up/issues"
},
"homepage": "https://tryup.org",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^10.3.0",
"typescript": "^5.4.2"
}
}