-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.21 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.21 KB
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
{
"name": "alleria",
"version": "0.0.5",
"description": "a loose collection of plugins",
"main": "lib/index.js",
"repository": "git@github.com:Jetsly/alleria.git",
"author": "Jetsly <cnljli@live.com>",
"license": "MIT",
"bin": {
"alleria-ghpage": "bin/deploy-gh-page.sh"
},
"files": [
"bin",
"lib"
],
"keywords": [
"alleria",
"typescript",
"cli",
"gulp",
"travis"
],
"scripts": {
"test": "nyc ava",
"build": "gulp build",
"coverage": "codecov",
"lint": "lint-staged"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write"
]
},
"dependencies": {
"less": "^4.1.1",
"less-plugin-npm-import": "^2.1.0",
"postcss": "^8.3.6"
},
"devDependencies": {
"@types/gulp": "^4.0.9",
"@types/less": "^3.0.3",
"@types/markdown-it": "^12.2.0",
"@types/node": "^16.7.1",
"@types/through2": "^2.0.36",
"ava": "^3.15.0",
"codecov": "^3.8.3",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"markdown-it": "^12.2.0",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"vinyl": "^2.2.1"
}
}