-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "datastructure-algorithm-ts",
"version": "1.0.0",
"description": "JavaScript DataStructure and Algorithm with TypeScript",
"main": "index.js",
"scripts": {
"test:al": "jest ./Algorithm/Test",
"test:ds": "jest ./DataStructure/Test",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "https://github.com/Reaper622/DataStructure-Algorithm-TS"
},
"keywords": [
"leetcode",
"datastructure",
"algorithm",
"typescript"
],
"author": "MacTavish Lee",
"license": "MIT",
"dependencies": {
"@babel/core": "7.1.2",
"@babel/preset-env": "7.1.6",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.5.0",
"babel-preset-env": "1.7.0",
"eslint-plugin-jest": "22.0.0",
"jest": "^24.5.0"
},
"devDependencies": {
"eslint": "5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"vuepress": "^1.2.0"
},
"directories": {
"test": "test"
}
}