-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "@mistlog/typetype",
"version": "0.0.30",
"description": "A programming language designed for typescript type generation",
"keywords": [
"peg",
"parser",
"typescript",
"type"
],
"scripts": {
"test": "jest --coverage --runInBand",
"build": "tsc",
"prerelease": "npm publish --tag temp"
},
"repository": {
"type": "git",
"url": "https://github.com/mistlog/typetype"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build"
],
"bin": {
"typetype": "build/cli/index.js"
},
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^9.0.10",
"@types/jest": "^24.0.17",
"@types/node": "^14.14.22",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@babel/core": "^7.12.10",
"commander": "^7.2.0",
"filewalker": "^0.1.3",
"fs-extra": "^9.1.0",
"node-watch": "^0.7.1",
"pegjs-backtrace": "^0.2.0",
"react-peg": "^0.1.8"
}
}