-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "awesome-javascript-code-implementation",
"author": "Rain120",
"repository": {
"type": "git",
"url": "git+https://github.com/Rain120/awesome-javascript-code-implementation.git"
},
"version": "1.0.0",
"description": "Awesome code implementation for Javascript",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"coveralls": "cat coverage/lcov.info | coveralls",
"testing": "npm run test && npm run coveralls",
"coverage": "jest --coverage",
"test:watchAll": "jest --coverage --watchAll",
"lint-staged": "lint-staged",
"lint-staged:ts": "tslint -c ./tslint.json src/**/**.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"plop": "./node_modules/.bin/plop",
"template": "npm run plop template",
"docs": "npm run plop docs",
"template-docs": "npm run plop model-template-docs",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"commit-push": "./commit-push.sh",
"deploy": "bash deploy.sh"
},
"keywords": [
"awesome",
"javascript",
"code",
"implementation",
"code-implementation",
"sort",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Rain120/awesome-javascript-code-implementation/issues"
},
"homepage": "https://github.com/Rain120/awesome-javascript-code-implementation#readme",
"lint-staged": {
"{src}/**/**.ts": [
"npm run lint-staged:ts",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^24.0.23",
"@vuepress/plugin-back-to-top": "^1.2.0",
"@vuepress/plugin-blog": "^1.9.2",
"@vuepress/plugin-google-analytics": "^1.2.0",
"@vuepress/plugin-medium-zoom": "^1.0.0-rc.1",
"@vuepress/plugin-pwa": "^1.3.0",
"conventional-changelog-cli": "^2.0.27",
"coveralls": "^3.0.8",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-katex": "^2.0.3",
"markdown-it-task-lists": "^2.1.1",
"moment": "^2.24.0",
"plop": "^2.5.4",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.0",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"vuepress": "^1.2.0",
"vuepress-plugin-awesome-gitalk": "^0.0.4"
}
}