-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 933 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
40
41
42
43
44
45
46
47
48
{
"name": "ts-ast",
"version": "0.0.0",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "MIT",
"keywords": [],
"scripts": {
"test": "mocha tests/**/*.test.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"pretest": "npm run compile"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/mocha": "10.0.0",
"@types/node": "14.11.2",
"chai": "4.3.6",
"gts": "3.1.1",
"mocha": "10.0.0",
"ts-node": "10.9.1",
"typescript": "4.8.2"
},
"mocha": {
"diff": true,
"extension": [
"ts"
],
"opts": false,
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"require": [
"ts-node/register"
],
"ui": "bdd",
"exit": true
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"printWidth": 120,
"tabWidth": 2
}
}