-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 KB
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
{
"name": "coding",
"version": "1.0.0",
"description": "a reposity with coding example",
"main": "index.js",
"scripts": {
"test": "jest",
"test:help": "jest --help",
"test:debug": "jest --debug",
"test:verbose": "jest --verbose",
"test:init": "jest --init",
"test:json": "jest --json",
"test:exportJson": "jest --json --outputFile=./export/reporter.json",
"test:coverage": "jest --coverage",
"test:watchAll": "jest --watchAll",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\"",
"git:pull": "pull",
"git:push": "push",
"ebook:serve": "honkit serve ebook",
"ebook:build": "honkit build ebook",
"ebook:pdf": "honkit pdf ebook",
"ebook:mobi": "honkit mobi ebook",
"ebook:epub": "honkit epub ebook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ataola/coding.git"
},
"keywords": [
"leetcode"
],
"author": "ataola (Zheng JiangTao)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ataola/coding/issues"
},
"homepage": "https://github.com/ataola/coding#readme",
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"honkit": "^3.7.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"prettier": "^2.2.1"
}
}