-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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
{
"name": "@yumemi-inc/statictrace",
"version": "1.0.0-beta.15",
"description": "A library for semi-automatic static testing.",
"keywords": [
"testing",
"static analysis",
"tool",
"parsers",
"compilers"
],
"bin": {
"statictrace": "./build/lib.js"
},
"homepage": "https://github.com/yumemi-inc/statictrace#readme",
"bugs": {
"url": "https://github.com/yumemi-inc/statictrace/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yumemi-inc/statictrace.git"
},
"license": "MIT",
"contributors": [
"Kirill Vasiltsov",
"Nobuyuki Tsutsui"
],
"scripts": {
"test": "jest",
"test:update": "jest --updateSnapshot",
"watch": "tsc -w",
"parse": "node build/lib.js",
"build": "tsc",
"format": "prettier -w ."
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"commander": "^7.2.0",
"ts-morph": "^11.0.0",
"typescript": "~4.3.2",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@types/node": "^15.6.1",
"jest": "^27.0.4",
"prettier": "^2.3.1"
},
"files": [
"build"
]
}