-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
36 lines (36 loc) · 892 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
{
"name": "leetcode-javascript",
"version": "1.0.0",
"description": "Javascript solutions for leetcode problems.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "node build/index.js",
"create:random": "node create/random.js",
"create": "node create/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaffinLee/leetcode-javascript.git"
},
"keywords": [
"leetcode"
],
"author": "Baffin Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/BaffinLee/leetcode-javascript/issues"
},
"homepage": "https://github.com/BaffinLee/leetcode-javascript#readme",
"devDependencies": {
"axios": "^0.18.0",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"fs-extra": "^6.0.0",
"highlight.js": "^9.12.0",
"react-jsx": "^1.0.0",
"showdown": "^1.9.1"
}
}