-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "typenovel",
"version": "1.2.0",
"description": "A simple markup language to write novel with types.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"tnc": "./bin/tnc"
},
"scripts": {
"build": "make",
"build-examples": "tsc -p ./ts-examples",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tategakibunko/TypeNovel.git"
},
"keywords": [
"TypeNovel",
"novel",
"compiler",
"language",
"TypeScript",
"javascript"
],
"author": "Watanabe Masaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/tategakibunko/TypeNovel/issues"
},
"homepage": "https://github.com/tategakibunko/TypeNovel",
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json",
"diagnostics": {
"warnOnly": true
}
}
},
"testMatch": [
"**/src/**/*.test.ts"
]
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/moo": "^0.5.4",
"@types/node": "^15.0.0",
"jest": "^26.6.3",
"node-notifier": ">=8.0.1",
"ts-jest": "^26.5.3",
"typescript": "^4.2.2",
"set-value": ">=4.0.1"
},
"dependencies": {
"commandpost": "^1.4.0",
"moo": "^0.5.1",
"nearley": "^2.20.1"
}
}