forked from ziyi2/awesome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 719 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 719 Bytes
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
{
"name": "i-algorithms",
"version": "0.0.3",
"description": "Introduction To Algorithms With JavaScript.",
"main": "lib",
"repository": {
"type": "git",
"url": "git+https://github.com/ziyi2/algorithms"
},
"scripts": {
"dev": "vuepress dev docs",
"dist": "vuepress build docs",
"deploy": "npm run dist && gh-pages -d docs/.vuepress/dist",
"lint-md": "remark ."
},
"keywords": [
"awesome",
"front-end"
],
"author": "ziyi2",
"license": "ISC",
"devDependencies": {
"gh-pages": "^2.2.0",
"remark-cli": "^8.0.0",
"remark-lint": "^7.0.0",
"remark-preset-lint-recommended": "^4.0.0"
},
"dependencies": {
"vue-template-compiler": "^2.7.8"
}
}