-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.23 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
{
"name": "ffxiv-cn-news-reptile",
"version": "1.2.0",
"main": "src/index.js",
"files": [
"dist",
"test"
],
"private": true,
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register --extension .test.ts tests/*.ts",
"format": "prettier --write \"**/*.ts\""
},
"dependencies": {
"axios": "~0.26.1"
},
"mocha": {
"require": [
"ts-node/register"
],
"ui": "bdd"
},
"repository": "https://github.com/AwesomeHamster/ffxiv-cn-news-reptile.git",
"author": "SaarChaffee <1240148332@qq.com>",
"maintainers": [
{
"name": "Maiko Tan",
"email": "maiko.tan.coding@gmail.com"
}
],
"license": "MIT",
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf",
"quoteProps": "consistent",
"jsxSingleQuote": true
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.32",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}