-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
{
"name": "leetcode-with-js",
"version": "1.0.0",
"description": "Solving LeetCode problems using JavaScript",
"scripts": {
"test": "mocha --require @babel/register"
},
"bin": {
"add": "bin/add.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myangvgo/leetcode-with-js.git"
},
"keywords": [
"leetcode",
"javascript"
],
"author": "MIN YANG",
"license": "ISC",
"bugs": {
"url": "https://github.com/myangvgo/leetcode-with-js/issues"
},
"homepage": "https://github.com/myangvgo/leetcode-with-js#readme",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"chai": "^4.2.0",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"mocha": "^6.2.2"
},
"dependencies": {
"@babel/runtime": "^7.8.4"
}
}